js turn string to array code example
Example 1: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');
Example 2: javascript string to array
const str = 'Hello!';
const arr = Array.from(str);
Example 3: convert string to array js
function f() {
return Array.from(arguments);
}
f(1, 2, 3);
const s = new Set(["toto", "truc", "truc", "bidule"]);
Array.from(s);
const m = new Map([[1, 2], [2, 4], [4, 8]]);
Array.from(m);
const mapper = new Map([["1", "a"], ["2", "b"]]);
Array.from(mapper.values());
Array.from(mapper.keys());
Array.from("toto");
Array.from([1, 2, 3], x => x + x);
Array.from({length: 5}, (v, k) => k);