Source code
Revision control
Copy as Markdown
Other Tools
// => binds tighter than , (on the other side)
var h = (a => a, 13); // sequence expression
assertEq(h, 13);
// => binds tighter than , (on the other side)
var h = (a => a, 13); // sequence expression
assertEq(h, 13);