MCPcopy Create free account
hub / github.com/Open-Bootcamp/JavaScript-Basico / multiplicar

Function multiplicar

sesion-08-funciones/declaracion-funciones.js:69–74  ·  view source on GitHub ↗
(a = 0, b = 0)

Source from the content-addressed store, hash-verified

67let variable = "hola"
68
69function multiplicar(a = 0, b = 0) {
70 console.log(variable)
71 let variable_interna = "adiós"
72 console.log(variable_interna)
73 return a * b
74}
75
76
77console.log(multiplicar(4, 9))

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected