📘
NavDoc by Bash School
GithubContact
📘
NavDoc by Bash School
  • 🎓Introduction
  • 🐢Getting Started
  • ⚡Changelog
  • 👨‍🚀Maintainers
  • 🛣️Roadmap
  • Fundamentals
    • The Internet
      • Introduction
      • What is a URL
      • What is a port
      • The DNS protocol
      • The TCP protocol
      • The UDP protocol
      • The Web
      • The HTTP protocol
      • Hyperlinks
      • What is a Web browser
      • What is a Web server
    • HTML
      • Your first HTML page
      • Text tags
      • Attributes
      • Links
      • Images
      • Lists
      • Head Tags
      • Container tags
    • CSS
      • Introduction
      • Colors
      • selectors
      • Cascade
      • Specificity
      • Units
      • Advanced selectors
      • Typography
      • The box model
      • The display property
      • Responsive design
  • JavaScript
    • Basics
      • Introduction
      • Literals , Identifiers, Variables
      • Comments
      • The difference between let, const and var
      • Types
      • Operators and expressions
      • Arithmetic operators
      • The assignment operator
      • Operators precedence
      • Strings
      • Numbers
      • Semicolons, white space and sensitivity
      • Arrays
      • Conditionals
      • Loops
      • Functions
      • Objects
      • Arrays + functions
      • OOPS
      • Asynchronous
      • Scope, hoisting, event loop
      • ES Modules
      • Errors and exceptions
      • Built-in objects
        • The global object
        • Object properties
        • Number
        • String
        • Math
        • JSON
        • Date
        • Intl
        • Set and Map
      • More operators
    • Nodejs
      • Getting Started
      • Installation
      • Hello World in Node
      • Modules
      • Packages
      • File Handling
      • HTTP Request
      • Processing Files
      • HTTP
    • Express.js
      • Getting Started
      • Middleware
      • Serve Static Assets
      • How to Send Files to the Client
      • Sessions
      • Validate Input
      • Sanitizing Data
      • Forms
      • File Uploads
    • React
      • Setting up a React project with Vite
      • React Components
      • Introduction to JSX
      • Using JSX to compose UI
      • The difference between JSX and HTML
      • Embedding JavaScript in JSX
      • Handling user events
      • Managing state
      • Component props
      • Data flow
      • Lifecycle events
      • Managing forms in React
      • Install the React Developer Tools
      • Installing Tailwind CSS in a React app
      • Build a counter in React
    • TypeScript
      • Key Benefits
      • Types of Languages
      • The Need for TypeScript
      • What is TypeScript?
      • The tsc Compiler
      • Basic Types in TypeScript
      • tsconfig
      • Interfaces
      • Types
      • Arrays in TypeScript
      • Enums
      • Exporting and importing
    • MongoDB
      • SQL vs. NoSQL Databases
      • Installing MongoDB
      • MongoDB Databases and Collections
      • Working with Documents
      • MongoDB Operators
      • Sorting, Indexing & Searching
      • Built-in Methods
Powered by GitBook
On this page
  • Strongly Typed vs. Loosely Typed
  • Strongly Typed Languages
  • Loosely Typed Languages

Was this helpful?

Edit on GitHub
  1. JavaScript
  2. TypeScript

Types of Languages

Strongly Typed vs. Loosely Typed

Understanding the differences between strongly typed and loosely typed languages is essential for making informed decisions about which programming language to use in various scenarios.

Strongly Typed Languages

Definition: Strongly typed languages enforce strict type rules, preventing implicit type conversions. This means variables and values must strictly adhere to the declared type, reducing the likelihood of type-related errors.

Examples: Java, C++, C, Rust

Benefits:

  • Fewer Runtime Errors: Type errors are caught at compile time, preventing many common runtime errors.

  • Stricter Codebase: The strict enforcement of types leads to more robust and predictable code.

  • Early Error Detection: Catching errors at compile time saves time and resources, making development more efficient.

Example: Code that doesn't work due to type mismatch.

#include <iostream>

int main() {
  int number = 10;
  number = "text";  // Error: cannot assign a string to an integer
  return 0;
}

Loosely Typed Languages

Definition: Loosely typed languages are more permissive with types, allowing implicit type conversions. Variables can change types dynamically, making these languages more flexible but potentially more error-prone.

Examples: Python, JavaScript, Perl, PHP

Benefits:

  • Ease of Writing Code: Less strict type rules can speed up development and make the code more concise.

  • Fast to Bootstrap: Quick prototyping and development due to the flexibility in type handling.

  • Low Learning Curve: Easier for beginners to start coding without worrying about types.

Example: Code that works despite type changes.

function main() {
  let number = 10;
  number = "text";  // No error: JavaScript allows changing the type
  return number;
}
PreviousKey BenefitsNextThe Need for TypeScript

Last updated 12 months ago

Was this helpful?