Skip to content

Instantly share code, notes, and snippets.

@weizman
Created September 1, 2021 05:27
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 weizman/36b6d8806a7e7914b97b2436c6d542d6 to your computer and use it in GitHub Desktop.
Save weizman/36b6d8806a7e7914b97b2436c6d542d6 to your computer and use it in GitHub Desktop.
function y(b) {
return b + 5;
}
var x = (a) => {
return y(a + 1);
};
x(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment