Skip to content

Instantly share code, notes, and snippets.

@Soffcsr
Created May 10, 2020 00:02
Show Gist options
  • Save Soffcsr/498b328fc37f4ef9f49e828cec002e0a to your computer and use it in GitHub Desktop.
Save Soffcsr/498b328fc37f4ef9f49e828cec002e0a to your computer and use it in GitHub Desktop.
let cadenapar = ""
let cadenaimpar = ""
const texto = "programacion"
for(let i=0; i<texto.length; i++){
i%2 === 0 ? cadenapar = cadenapar.concat(texto.charAt(i))
: cadenaimpar = cadenaimpar.concat(texto.charAt(i))
}
console.log(cadenapar.concat(" ", cadenaimpar))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment