Created
March 23, 2024 16:28
-
-
Save oshingc/3d01be81611cba22396a14def302ba91 to your computer and use it in GitHub Desktop.
debug oshingc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script> | |
var numero1 = "3"; | |
var numero2 = "4"; | |
console.log("suma", suma(numero1, numero2)); | |
function suma(a, b){ | |
return a + b; | |
} | |
</script> | |
</head> | |
<body></body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment