Answers for "string convert to array javascript"

20

convert string to array js

// our string
let string = 'ABCDEFG';

// splits every letter in string into an item in our array
let newArray = string.split('');

console.log(newArray); // OUTPUTS: [ "A", "B", "C", "D", "E", "F", "G" ]
Posted by: Guest on October-23-2020
14

js string to array

var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
Posted by: Guest on April-08-2020
2

convert a string to array in javascript

// Designed by shola for shola

str = 'How are you doing today?';
console.log(str.split(" "));

//try console.log(str.split(""));  with no space in the split function
//try console.log(str.split(","));  with a comma in the split function
Posted by: Guest on January-17-2021
2

string to array javascript

const string = "Hello!";

console.log([...string]); // ["H", "e", "l", "l", "o", "!"]
Posted by: Guest on December-09-2020
0

convert string to array javascript

const string = 'hi there';

const usingSplit = string.split('');
const usingSpread = [...string];
const usingArrayFrom = Array.from(string);
const usingObjectAssign = Object.assign([], string);

// Result
// [ 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e' ]
Posted by: Guest on March-23-2021
0

how to turn a string into an array javascript

function reverseString() {
  const myString = 'Hello';
  const splits = myString.split("").reverse().join("");
}
Posted by: Guest on August-03-2021

Code answers related to "string convert to array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language