|
|
|
|
|
by mhink
3354 days ago
|
|
Hah! Thanks for the link- I discovered this gem just now in their list of comparisons to JS syntax: Javascript | Reason
--------------+----------------------------
const x = y; | let x = y;
let x = y; | reference cells
var x = y; | No equivalent (thankfully)
|
|