04. BASICS | Strings in JavaScript
let name = 'Shubham'; // string created using single quote
let name = "Shubham"; // string created using double quote
Strings are immutable. We can't modify the string at the same memory address. Th
javascript-topicwise-notes.hashnode.dev3 min read