About 408,000 results
Open links in new tab
  1. JavaScript Strings - W3Schools

    Complete JavaScript String Reference. The reference contains descriptions and examples of all string properties and methods.

  2. JavaScript String (with Examples) - Programiz

    In JavaScript, string is a primitive data type that represents textual data. In this tutorial, you will learn about JavaScript strings with the help of examples.

  3. The Beginner's Guide to JavaScript Strings By Examples

    Summary: in this tutorial, you’ll learn about the JavaScript string primitive type and how to use it to define strings. JavaScript strings are primitive values and are immutable. This means that …

  4. The JavaScript String Handbook – How to Work with Strings in JS

    Jan 5, 2024 · In JavaScript, strings are sequences of characters enclosed in either single or double quotes. This flexibility allows developers to choose the quotation style based on …

  5. JavaScript String Exercise - GeeksforGeeks

    Apr 7, 2025 · JavaScript string is a primitive data type and is used for storing and manipulating a sequence of characters. It can contain zero or more characters within single or double quotes. …

  6. Handling text — strings in JavaScript - Learn web development

    Apr 11, 2025 · In this article, we'll look at all the common things that you really ought to know about strings when learning JavaScript, such as creating strings, escaping quotes in strings, …

  7. Mastering JavaScript Strings: A Comprehensive Guide to Using …

    Strings can be created using double quotes ("), single quotes ('), or backticks (`). So, you can write strings like this: Unlike some languages in which using different quotes changes how the …

  8. JavaScript Strings (All Methods With Example)

    Learn all about JavaScript Strings with examples in this tutorial! Understand methods like slice(), replace(), split(), and more. Master string manipulation easily.

  9. JavaScript Strings: The Basic Methods and Functions | JavaScript

    Learn the basics of JavaScript Strings with code examples and small tutorials and descriptions on how each string function and method works.

  10. Mastering JavaScript Strings: Guide with Examples - Savvy

    Nov 14, 2024 · Learn how to work with strings in JavaScript. This guide covers string creation, manipulation, methods, and type conversion examples.