Y
Hacker News
new
|
ask
|
show
|
jobs
by
anchpop
2018 days ago
I wish for a version of TS where I could have === automatically rewritten to use _.isEqual, that way [1,2,3] === [1,2,3] would return true.
1 comments
kolme
2017 days ago
In clojure(script) equality works this way. Values are compared and not instances. It makes the language a little bit higher level and more ergonomic. Love that feature.
link