Generation

generate functionFri, 31 Mar 2023

has un funcion para calcular el teorema de pitagoras

Script function pitagoras(a, b) { return Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2)); } pitagoras(3, 4)

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