Aug 9, 2017 · 1 min read
const x = 3;
console.log(t(x).toString()); // 3
console.log(t(x)(t(0)).toString()); // t(3)
This is not === ? I don’t understand. One is a value, the other is a function. I must miss something.
const x = 3;
console.log(t(x).toString()); // 3
console.log(t(x)(t(0)).toString()); // t(3)
This is not === ? I don’t understand. One is a value, the other is a function. I must miss something.
Written by