Javascript: Strings 1
A String is a series of characters enclosed with single or double quotes.
var name = "Bill";
var age = "30";
var address = '123 Cand Land Lane';
var greeting = '' //an empty string
A String is a series of characters enclosed with single or double quotes.
var name = "Bill";
var age = "30";
var address = '123 Cand Land Lane';
var greeting = '' //an empty string