Tag: strings in javascript

  • JavaScript tutorial 104 – JavaScript String Methods | String Functions

    String object properties and methods: var name = “I am javascript language”; document.write(name); Note: when we use member access operator (dot) on a primitive string variable it is implicitly converted to a string object. Properties: length: – returns the total number of characters present in a given string Ex: document.write(name.length); // 24 Methods: charAt(index:Number):String –…

  • Javascript Strings | Javascript tutorial

    String methods help you to work with strings.A JavaScript string stores a series of characters like “John Doe”.A string can be any text inside double or single quotes:String indexes are zero-based: The first character is in position 0, the second in 1, and so on. Link to my Websites :- Suraj Bahadur github : https://surajbahadur.me/…

  • Strings in JavaScript

    Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2014/11/strings-in-javascript.html 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.…