Apr 23 · 4 min read · If you have ever tried to build a complex sentence in JavaScript using traditional strings, you know the pain of "String Concatenation Hell." One missing space, a misplaced plus sign, or a forgotten q
Join discussion
Apr 21 · 5 min read · Template Literals are the modern ways that used to represent a string in JavaScript. Previously many concatenation methods are present but in ES6(2015) it introduce it. Before go into detail of templa
Join discussion
Apr 21 · 4 min read · If you have spent any time writing JavaScript, you have inevitably needed to combine text with dynamic data. Historically, this meant wrestling with the plus + operator, constantly opening and closing
Join discussion
Apr 14 · 4 min read · Why were template literals introduced? Let’s start with a small problem. Earlier in JavaScript, if you wanted to create a string with variables, you had to do this: const name = "Adarsh"; const age =
Join discussion