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)

function myInfo(firstName, age, isDev, birthDate){ return [firstName, age, isDev, birthDate] } myInfo('Raul', 28, true, new Date(1988, 8, 28))

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant