Question #192

Author: admin
tags: JavaScript  
function sum(x, y = 5) {
  return x + y;
}

console.log(sum(2, undefined));
What will be printed?
2
4
7
10
NaN
undefined
Rate the difficulty of the question:
easyhard