Skip to content

Dynamic Typing

Shane Brinkman-Davis Delamore edited this page Mar 29, 2018 · 6 revisions

Related: Static Typing

Strongly, Dynamically Typed

  • Better polymorphism
    • use the same code for logically identical situations with different types
  • more concise
    • less to refactor
  • rapid prototyping
  • testing is easy
  • compilers can do a lot to detect types and generate efficient code

No more Weak Typing

CaffeineScript strives to eliminate JavaScript's weak typing with minor changes to JavaScript's Semantics:

Clone this wiki locally