Skip to content

Instantly share code, notes, and snippets.

@seagomezar
Created September 24, 2018 20: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 seagomezar/0e061bde2a9292e9619694221168aced to your computer and use it in GitHub Desktop.
Save seagomezar/0e061bde2a9292e9619694221168aced to your computer and use it in GitHub Desktop.
Javascript Exercise 2
function bar() {
console.log("!");
}
function foo(x = bar()) {
}
foo(1);
// What is the expected output?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment