“Convertir la chaîne en array js” Réponses codées

Convertir la chaîne en 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" ]
snakebite_382

JS String pour tableau

// string
let string = '12345';

// splits characters string into items in our array
let array = string.split('');

console.log(array); // [ "1", "2", "3", "4", "5"]
Caffeinated Developer

chaîne pour tableau javascript

const str = 'Hello!';

console.log(Array.from(str)); //  ["H", "e", "l", "l", "o", "!"]
Leonardo

JS String pour tableau

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

JS String pour tableau

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

>> (5) ["How", "are", "you", "doing", "today?"]
Ariel Ferdman

chaîne pour tableau javascript

// If you want to split on a specific character in a string:
const stringToSplit = '01-02-2020';
console.log(stringToSplit.split('-')); 
// ["01", "02", "2020"]

// If you want to split every character:
const stringToSplit = '01-02-2020';
console.log(Array.from(stringToSplit));
// ["0", "1", "-", "0", "2", "-", "2", "0", "2", "0"]
RWL_Dittrich

Réponses similaires à “Convertir la chaîne en array js”

Questions similaires à “Convertir la chaîne en array js”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code