Generation

generate functionThu, 20 Jul 2023

Función para ver si un número es mayor

Script function isGreater(a, b) { if (a > b) { return true } else { return false } } isGreater(1,2);

Want to kickstart your project?Use the new AI Studio to create your code