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...28 readsJavaScript
Shefalidevshefali.hashnode.dev·Nov 18, 202313 Most Common JavaScript String Methods You Should Know AboutIn JavaScript, strings are sequences of characters. JavaScript provides a rich set of methods to manipulate and work with strings. In this post, I'll introduce you to the 13 most commonly used JavaScript string methods and their functionalities. Stri...10 likesWeb Development
Samuel Uzorsamueluzor.hashnode.dev·Aug 24, 2023JavaScript Palindrome Checker: Simplifying String Reversal and ComparisonWhen I first started participating in coding challenges to better my skills, one of the tasks was to "Write a function that accepts a string and returns true if the string is a palindrome or false if it is not." While practicing javascript algorithm ...1 likejavascript strings
WebTutorwebtutor.hashnode.dev·Aug 2, 2023Journey Of JavaScript and Understand Events, Strings, and NumbersWelcome to the exciting world of JavaScript, where interactivity and functionality come to life! In this comprehensive blog, we will explore some fascinating aspects of JavaScript, including events, strings, template literals, and numbers. Understand...JavaScript
Aman Mishraamanmishra.hashnode.dev·Jul 3, 2023Strings and Template LiteralsThe String object is used to represent and manipulate a sequence of characters. Strings are useful for holding data that can be represented in text form. Creating Strings: Here in the code below, we are creating a string with names string1 and string...WeMakeDevs
Mayur Patilmayurpatil77.hashnode.dev·Jun 30, 2023All JavaScript Strings Methods ( Cheatsheet )length: Returns the length of a string. Example: "Hello".length returns 5. charAt(index): Returns the character at the specified index in a string. Example: "Hello".charAt(1) returns "e". concat(str1, str2, ...): Combines two or more strings and re...1 like·72 readsJavaScript
Rajasree Pothularajasree.hashnode.dev·Jun 5, 2023JavaScript String Methods, Properties, and ObjectsA javascript string is data type in any programming language and it’s used to store text rather than numbers. In Javascript, strings are used for manipulating the text. A string can be declared with enclosing of single quotes or double quotes or back...Strings
tarunkumar paltkp.hashnode.dev·May 22, 2023JavaScript StringsIn this article, we learn about strings and their methods What is String? a string is a sequence of characters enclosed in single quotes (''), double quotes ("") or backticks (``). Strings are immutable, meaning their values cannot be changed once ...javascript strings
Dinesh Imaduwa Gamagedaminda.hashnode.dev·Mar 23, 2023Understanding JavaScript String: an easy beginner's guide with examplesThe JavaScript string is a fundamental topic that every developer needs to know, whether you specialize in front-end or back-end development. A guide to JavaScript strings is essential for gaining a sound understanding of this topic. What is a JavaSc...2 likes·114 readsJavaScriptJavaScript
Arun RforSkill Safariedukeys.hashnode.dev·Mar 1, 2023Top 10 JavaScript String Methods You Should KnowIn JavaScript String methods help you to work with strings having a good knowledge of those methods helps you while working with strings in your JavaScript, in this article we will discuss on Top 10 JavaScript String Methods You Should Know Types of...3 likes·1.4K readsSkill Safari