|
|
|
|
|
by jt2190
2210 days ago
|
|
I’ve heard another definition of strong, which is that the compiler will make more guarantees, and in those cases the terminology was: * safe/unsafe
* strong/weak
* static/dynamic
Note that while safe/unsafe is basically all-or-nothing, strong/weak and static/dynamic are more of a spectrum, so JavaScript would be safe, weaker, and more dynamic than other languages. Typescript makes JS stronger when authoring code. |
|