Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Nix useless parens

...

Code Block
languagejavascript
a = ("K").ord(); // a: 75
b = ("Kite").ord(); // b: 75
c = ("Kite").split(re##).map(function(x){x.ord()}); // c: [75,105,116,101]
d = ("K").ord().chr() == "K" // d: true

...