13. BASICS | Memory Address in JavaScript
Memory Address of Primitive Data Types
// strings
const firstName1 = "John";
const firstName2 = "John";
const firstName3 = "Jo" + "hn"; // John created in a different way
const lastName = "Doe";
const
javascript-topicwise-notes.hashnode.dev2 min read