how to split string into array in javascript code example

Example 1: js string to array

var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks

Example 2: split array javascript

// Returns new array from exising one
arr.slice(start, end);

Example 3: in javascript how to split string

var str = 'It iS a 5r&e@@t Day.'
var array = str.split(" ");
print(array);

var str = 'It iS a 5r&e@@t Day.'
var array = str.split(" ",2);
print(array);

Example 4: HOW TO SPLIT AN ARRAY JAVASCRIPT

array.splice(index, number, item1, ....., itemN)

Tags:

Java Example