Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 354 Bytes

create.md

File metadata and controls

29 lines (19 loc) · 354 Bytes

Creation

// Single quotes can be used
var str = 'Our lovely string';

// Double quotes as well
var otherStr = "Another nice string";

Note: Strings can not be substracted, multiplied or divided.


Create a variable named str set to the value "abc".

var str = 'abc';
assert(str === 'abc');