Answers for "node js .split"

1

node js split

str.split([separator[, limit]])
Posted by: Guest on May-20-2020
0

Js split method

// Split a string into an array of substrings:
var String = "Hello World";
var Array = String.split(" ");
console.log(Array);
//Console:
//["Hello", "World"]

///*The split() method is used to split a string into an array of substrings, and returns the new array.*/
Posted by: Guest on March-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language