generate functionMon, 22 May 2023

Crea una lista con los siguientes elementos: - Tu nombre - Tu edad (number) - ¿Eres desarrollador? (boolean) - Tu fecha de nacimiento (Date)

var d = new Date(); var strDate = d.getFullYear() + "/" + (d.getMonth()+1) + "/" + d.getDate(); var list = ['Thomas', 20, true, strDate];

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant