Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Last active August 29, 2015 14:08
Show Gist options
  • Save macikokoro/c7a23cd7f5437b9df6c3 to your computer and use it in GitHub Desktop.
Save macikokoro/c7a23cd7f5437b9df6c3 to your computer and use it in GitHub Desktop.
Get the square of a number.
var square = function(x) {
return x * x;
};
console.log(square(8));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment