Type Conversions
Term side of the Card
Topic: Basics
Unit title: Type Conversions
Categories: Concept
Explanation side of the Card
Explanation: The process of converting values from one data type to another. JavaScript performs implicit type conversions automatically, such as converting a string to a number in arithmetic operations. Explicit conversions can be done using functions like `Number()`, `String()` and `Boolean()`.