Generation

generate functionTue, 13 Jun 2023

add two numbers and return them

Script function add(a, b){ let c = a + b; return c; } let sum = add(5, 6);

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