DEV Community

Discussion on: Js and burning out

Collapse
 
juancarlospaco profile image
Juan Carlos

Try Nim lang, inferred static typing, compiles to JavaScript:

  • Natural type is from 0 to biggest integer possible
  • Want an integer from 42 to 54?, range[42..54]
  • Sized integers? int8 to int64, sized floats too
  • Byte type from 0 to 255 with just 1 byte
  • JSON is a literal JSON, not inside a string
  • Distinct type, Tainted string type
  • Syntax similar to Python or CoffeeScript
  • Compile to WASM

Sometimes the most Trendy stuff can suck yeah :)