Skip to content

Instantly share code, notes, and snippets.

@oshingc
Created March 23, 2024 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oshingc/3d01be81611cba22396a14def302ba91 to your computer and use it in GitHub Desktop.
Save oshingc/3d01be81611cba22396a14def302ba91 to your computer and use it in GitHub Desktop.
debug oshingc
<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