Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Last active June 21, 2022 16:57
Show Gist options
  • Save LiorB-D/0ac6b96cec3fdecc0bebd1fa51dbd1db to your computer and use it in GitHub Desktop.
Save LiorB-D/0ac6b96cec3fdecc0bebd1fa51dbd1db to your computer and use it in GitHub Desktop.
function foo(x, y) {
let xSquared = x * x
let ySquared = y * y
return Math.sqrt( xSquared + ySquared )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment