๐งต Day 7 โ Strings in JavaScript (Methods & Template Literals)
๐ค What is a String?
A string is a sequence of characters used to represent text.
jsCopyEditlet greeting = "Hello, world!";
Strings are immutable โ you can create new strings from existing ones, but you can't change a character inside a string direc...
codewithgift.hashnode.dev3 min read