You are viewing a single comment's thread from:
RE: Types Of Programming [Highly Detailed and useful for old and new programmers both]
Great writeup. I only disagree in two points really:
- C is not weakly typed. C types are quite strong. The problem with C is that it allows casting any pointer type to any other.
- JavaScript is not a functional language. JavaScript functions use a context. JavaScript makes heavy use of functions, but you can do that in Java 8 or C++ just as well. At its base, JavaScript is imperative.