generate functionMon, 15 May 2023

creame una calculadora

Script function add(a, b){ return a + b; } function subtract(a, b){ return a - b; } function multiply(a, b){ return a * b; } function divide(a, b){ return a / b; } function operate(operator, a, b){ return operator(a, b); } operate(add, 1, 2)

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