Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 319 Bytes

File metadata and controls

11 lines (10 loc) · 319 Bytes

#Strings in Javascript Strings are primitive values in Javascript. They are usually used to store text. A string is composed of zero or more characters between simple or double quotes "" or ''.

#Examples of strings

console.log("Hello") //"Hello"
console.log('Hello') //"Hello"
console.log("") //""