es6 Quiz
ES6 Basics
Question 1 of 254%
What will this function return?
(function() {
let f = this ? class g { } : class h { };
return [ typeof f, typeof h ];
})();es6 Quiz
(function() {
let f = this ? class g { } : class h { };
return [ typeof f, typeof h ];
})();