Strings in JavaScript

kudvenkat
Youtube
Related Topic
:- Web Development Javascript

In this video we will discuss different functions that are available to manipulate string in JavaScript. A string is any text inside quotes. You can use either single or double quotes. var string1 = "string in double quotes" var string2 = 'string in single quotes' Concatenating strings : There are 2 options to concatenate strings in JavaScript. 

Comments