How to use split() in Javascript

By FoxLearn 12/18/2024 6:57:17 AM   17
The `split()` method in JavaScript splits a string into an array of substrings, using a specified separator.

For example:

let text = "Hello,World,How,Are,You";
let result = text.split(",");

console.log(result); // Output: ["Hello", "World", "How", "Are", "You"]

In this example, split(",") is used to divide the string text at each comma, resulting in an array of words.

You can also use it without a separator:

let word = "Javascript";
let letters = word.split("");

console.log(letters); // Output: ["J", "a", "v", "a", "s", "c", "r", "i", "p", "t"]

In this case, split("") splits the string into individual characters.