Darshit Anjariadarshitanjaria.hashnode.dev·Aug 29, 2024Mastering JavaScript: The Battle Between concat() and Template literalsWhen it comes to concatenating strings in JavaScript, developers often have two main options: using the concat() method or template literals (backticks). While template literals offer a modern and convenient way to combine strings, there are still va...DiscussJavaScript
Jemin Kikanijemin.hashnode.dev·Mar 17, 2024Day 8 : What is an Array? And how many types of an Array Methods in javascript?Array An array is a special variable, which can hold more than one value. An array can hold many values under a single name, and you can access the values by referring to an index number. Syntax:- const array_name \= [item1, item2, ...]; Example:...DiscussNumeric Sort
Jeet Bhalujeetbhalu.hashnode.dev·Mar 12, 2024ConcatenationConcatenation is two text statement to concate to a sum typeConcatenation is used + symbol to marge to statement. Multiline string: A Multi line String is to store multi data in String Ex: void main() { String Con_tring = ''' This is a fun ...DiscussConcatenation