Skip to content

Instantly share code, notes, and snippets.

@ldong
Last active February 5, 2017 21:57
Show Gist options
  • Save ldong/50f0a24c2ad6ce73e05654fa6a801038 to your computer and use it in GitHub Desktop.
Save ldong/50f0a24c2ad6ce73e05654fa6a801038 to your computer and use it in GitHub Desktop.
javascript online questions

JavaScript Online Question

What is the outupt of the following snippet

function sum(a) {
  var sum = a;
  function f(b) {
    sum += b;
    return f;
  }
  f.toString = function() {
    return sum;
  }
  return f;
}

console.log(sum(0)(1)(2)(3)(4)(5)); // 15

Answers:

  1. 012345
  2. 12345
  3. 1
  4. None of these

wechatimg606

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment