Message from JavaScript discussions

January 2018

— Anybody can help me with my project? I am trying to make a alphabet site A to Z for kids and I want to show just one letter at a time and each letter has pictures and words starting with that letter. On the screen just one letter with explanation.

Message permanent page

— 

Any difficulties with that? it could be somekind of page-slider: https://tympanus.net/Development/PageTransitions/

— I wanted it look like this

— 👍

— Guys I need little help

— Function theBeatlesPlay([Beatles, Agulero, Michael Jackson], [Guitar, Musical, Piano, Fortopiano]){
var arr = [""];
for(var i = 0; i <= arr.length; i++){
console.log(arr[0][i]);
}
}
theBeatlesPlay();

Message permanent page

— How can i get from function arrays Beatles plays Guitar

— Https://flickity.metafizzy.co/

— What were you thinking here?

— I need to get Beatles from first array and Guitar from second array and put them together in one sentence as string

Message permanent page

— Syntax error)

— 

function theBeatlesPlay(artists, instruments) {
console.log(
artists[0] +
" plays " +
instruments[0]
);
}

theBeatlesPlay([
"Beatles",
"Agulero",
"Michael Jackson"
], [
"Guitar",
"Musical",
"Piano",
"Fortopiano"
]);

Message permanent page