Andy Earnshaw (2013-07-18T17:48:56.000Z)
I was thinking about this subject a while ago and found an interesting
thread [1] on the Scala debate mailing list.  I was going to raise this
question back then, but I forgot about it until now.  If I understand
correctly, several Unicode symbols are aliases for ASCII operators, for
example:

=>  ⇒   // implemented
<-  ←   // implemented
->  →   // implemented


At the time I saw this, I thought it was pretty interesting.  The thread
goes on to suggest more could be implemented:

>=  ≥
<=  ≤

*   ×   multiplication  // this one's probably an ASCII approximation
/   ÷   division
!   ¬   logical negation
^   ⊕   exclusive or
!=  ≠   not equal

Perhaps we could think about this for ECMAScript, along with the rest(e.g.
≈ for == and ≡ for ===).  Would there be any harm in it if we kept the
ASCII equivalents intact?  By putting them in we may be looking toward the
future where this kind of thing is (hopefully) more common in programming
languages (and on keyboards).

Andy

 [1] http://www.scala-lang.org/node/4723
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20130718/ff99bd35/attachment.html>
forbes at lindesay.co.uk (2013-07-18T19:35:50.130Z)
I was thinking about this subject a while ago and found an [interesting thread](http://www.scala-lang.org/node/4723) on the Scala debate mailing list.  I was going to raise this question back then, but I forgot about it until now.  If I understand correctly, several Unicode symbols are aliases for ASCII operators, for example:

```
=>  ⇒   // implemented
<-  ←   // implemented
->  →   // implemented
```

At the time I saw this, I thought it was pretty interesting.  The thread
goes on to suggest more could be implemented:

```
>=  ≥
<=  ≤
```

```
*   ×   multiplication  // this one's probably an ASCII approximation
/   ÷   division
!   ¬   logical negation
^   ⊕   exclusive or
!=  ≠   not equal
```

Perhaps we could think about this for ECMAScript, along with the rest(e.g. `≈` for `==` and `≡` for `===`).  Would there be any harm in it if we kept the ASCII equivalents intact?  By putting them in we may be looking toward the future where this kind of thing is (hopefully) more common in programming languages (and on keyboards).