Skip to content

Instantly share code, notes, and snippets.

@pwnorbitals
Created February 9, 2018 16:52
Show Gist options
  • Save pwnorbitals/c829596d546cc51795e7161268ee90e1 to your computer and use it in GitHub Desktop.
Save pwnorbitals/c829596d546cc51795e7161268ee90e1 to your computer and use it in GitHub Desktop.
let tableau = ['b', 'o', 'n', 'j', 'o', 'u', 'r'] // donnée
// Création de notre valeur
let result = '';
for(let i = 0; i < tableau.length; i++) {
result = result.concat(tableau[i]);
}
// Ecriture du résultat
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment