0
How do I sign my name as a strings to my name variable
name as a string
3 Answers
+ 5
name = "Melvin"
(you didn't ssspecify the language, sssoo... đ)
+ 2
var name = "name";
+ 2
You first declare your variable and then assign a string value to it.
Example (Javascript):
var name = "Melvin";