Generation

generate functionSun, 23 Apr 2023

UNA FUNCION PARA UNA CALCULADORA DE SUMAR NUMEROS INFINITOS

Script function add(...args) { let sum = 0; for(const arg of args) { sum += arg; } return sum; } add(1,2,3,4,5)

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