TypeChecking in JavaScript

  • By Mayuresh Marale
  • October 23, 2023
  • JavaScript
Typechecking in JavaScript

TypeChecking in JavaScript

JavaScript is a dynamically typed (or loosely typed) programming language. It allows you to declare variables without specifying or defining the variable type. You can create a variable TypeChecking in JavaScript without defining the type of value you can store in the variable. This can affect your program and cause bugs during runtime because the type can change.

For Free Demo classes Call: 020-71173125

Registration Link: Click Here!

For example, a variable can be declared and assigned a number. But as you write more code, values might get misplaced, and you might assign the same variable a string or boolean. This would affect your code when it runs:

let myVariable = 45; // => number

myVariable = ‘John Doe’; // => string

myVariable = false; // => Boolean

 

As you can see from the above example, a variable in JavaScript can change types throughout the execution of a program. This can be hard to keep track of as a programmer. This is one of the reasons why TypeScript is considered a superset of JavaScript.

To validate variables by checking their types in JavaScript, you can use the typeof operator. Type checking in JavaScript is not straightforward for non-primitive data types and specific values. This is why type-checking can become annoying, especially for inexperienced JS developers. “Become a React JS Pro in Pune! Join Our Expert-Led React JS Training in Pune for Dynamic Web Development. Hands-On Learning for Future-Ready Web Apps. Enroll Now!

In this article, you will learn how to use the typeof operator, instances when you should not use typeof, and the best way to check type in JavaScript for such instances.

JavaScript Data Types

In JavaScript, data types are classified into two groups: you have primitive and non-primitive data types. Aside from the object, which is a non-primitive data type, all other data types are primitive.

These data types include:

  1. String
  2. Number
  3. Boolean (true and false)
  4. null
  5. undefined
  6. Symbol

How to Check Type with the typeof Operator in JavaScript

The typeof operator accepts a single operand (a unary operator) and determines the operand’s type. There are two ways you can use the typeof operator. You can evaluate a single value or an expression:

 

typeof(expression);

// Or

typeof value;

 

The typeof operator will return the type as a string, meaning “number”, “string”, “boolean”, and lots more.

let myVariable = 45;

console.log(typeof myVariable); // returns “number”

console.log(typeof(myVariable)); // returns “number”

console.log(typeof 45); // returns “number”

console.log(typeof(45)); // returns “number”

It is important to know that you should always use the expression method (in the form of a function) when evaluating an expression rather than a single value. For example:

console.log(typeof(typeof 45)); // returns “string”

 

For Free Demo classes Call: 020-71173125

Registration Link: Click Here!

The above returns a string because the output of typeof 45 is evaluated as “number” (which is returned as a string), then the output of typeof(“number”) is evaluated as “string”.

Another example is if your number has a hyphen in it:

// Using expression

console.log(typeof(123-4567-890)); // returns “number”

// Using single value

console.log(typeof 123-4567-890); // returns NaN

The single value method will return NaN (Not a Number) because it will first evaluate typeof 123, which will return a string, “number”. This means you are now left with “number” – 4567-890, which cannot be subtracted and will return NaN.

 

How to Check for the Number Data Type

Let’s now explore the possible instances that will return the number data type.

There are different possible values that JavaScript considers a number, such as positive and negative integers, zero, floating-point numbers, and infinity:

console.log(typeof 33); // returns “number”

console.log(typeof -23); // returns “number”

console.log(typeof 0); // returns “number”

console.log(typeof 1.2345); // returns “number”

console.log(typeof Infinity); // returns “number”

 

It’s also important to know that values like NaN, even though it means Not-a-Number, will always return a type of “number”. Also, math functions will have the data type of number:

console.log(typeof NaN); // returns “number”

console.log(typeof Math.LOG2E); // returns “number”

Finally, when you use the Number() constructor to explicitly typecast a string that holds a number to a number or even a value like an actual string that cannot be typecasted to an integer, it will always return a number as its data type:

 

// Typecasting value to number

// returns “number”

console.log(typeof Number(`123`));

// Value cannot be typecasted to integer

// returns “number”

console.log(typeof Number(`freeCodeCamp`));

Finally, when you make use of methods like parseInt() and parseFloat(), which convert a string to a number and also round up a number, its data type will be number:

console.log(typeof parseInt(`123`)); // returns “number”

console.log(typeof parseFloat(`123.456`)); // returns “number”

 

Master Angular in Pune: Join Our Comprehensive Angular Course in Pune for Web Development Excellence. Learn from Experts, Build Dynamic Web Apps.

 

How to Check for the String Data Type

There are just a few instances that will return “string”. These instances are the empty string, a string of characters (this can also be a number), and multiple words:

console.log(typeof ”); // returns “string”

console.log(typeof ‘freeCodeCamp’); // returns “string”

console.log(typeof ‘freeCodeCamp offers the best free resources’); // returns “string”

console.log(typeof ‘123’); // returns “string”

Also, when you use the String() constructor with any value:

 

console.log(typeof String(123)); // returns “string”

How to Check for the Boolean Data Type

When you check for the true and false values, it will always return the type “boolean”. Also, when you check anything that makes use of the Boolean() constructor:

 

console.log(typeof true); // returns “boolean”

console.log(typeof false); // returns “boolean”

console.log(typeof Boolean(0)); // returns “boolean”

Additionally, when you use the double not operator (!!), which works just like the Boolean() constructor, “boolean” will be returned:

console.log(typeof !!(0)); // returns “boolean”

How to Check for the Symbol Data Type

When you use the Symbol() constructor, the “symbol” data type will be returned even if no value is passed. Also, when you pass in a parameter or use the Symbol.iterator symbol, which specifies the default iterator for an object:

console.log(typeof Symbol()); // returns “symbol”

console.log(typeof Symbol(‘parameter’)); // returns “symbol”

console.log(typeof Symbol.iterator); // returns “symbol”

How to Check for the Undefined Data Type

A variable is said to be undefined when you declare it without initiating a value. When you check for undefined, a declared variable with no value (undefined), and an undefined variable, they will always return “undefined”:

 

// Using the undefined keyword

console.log(typeof undefined); // returns “undefined”

//variable is declared but undefined

let a;

console.log(typeof a); // returns “undefined”

// Using undefined variable

console.log(typeof v); // returns “undefined”

So far, you have learned how to check for types of all primitive data types except null. It’s a little tricky and I covered it in detail in my article on Null Checking in JavaScript Explained.

But I will briefly go over how to check for null in this article so you can understand the basics.

For Free Demo classes Call: 020-71173125

Registration Link: Click Here!

How to Check for the Object Data Type

Certain instances will always return “object”, though that of null is a historical bug that cannot be fixed, while function has its technical reason.

 

console.log(typeof null);

console.log(typeof [1, 2, 3, “freeCodeCamp”]);

console.log(typeof { age: 12, name: “John Doe” });

console.log(typeof [1, 2, 3, 4, 5, 6]);

As you can see in the example above, an array will always return “object” when you use the typeof operation. This may not be very pleasant, but technically, an Array is a special type of object:

console.log(typeof [1, 2, 3, ‘freeCodeCamp’]);

 

Do watch our Components Of Angular video on YouTube.

In ES6, the Array.isArray method was introduced, which makes it possible for you to detect an Array easily:

// returns true

console.log(Array.isArray([1, 2, 3, “freeCodeCamp”]));

// returns false

console.log(Array.isArray({ age: 12, name: “John Doe” })); 

 

Author:-

Mayuresh Marale

Call the Trainer and Book your free demo Class For Javascript

Call now!!! | SevenMentor Pvt Ltd.

© Copyright 2021 | SevenMentor Pvt Ltd.

Submit Comment

Your email address will not be published. Required fields are marked *

*
*