programerin

an anonymous user · September 05, 2023
function skriv_hej (navn, nr){
    console.log ("hej " + navn + " " + nr)
}



for (let i = 0; i < 14; i++){
    console.log ("hej Alexander",i)
}



skriv_hej ("Alexander", 13)
Output

Comments

Please sign up or log in to contribute to the discussion.