Check if Value Is of Type

JavaScriptJavaScriptBeginner
Practice Now

This tutorial is from open-source community. Access the source code

Introduction

In this lab, we will explore a JavaScript function that checks whether a provided value is of a specified type. We will use the is() function, which leverages the constructor property and Array.prototype.includes() method to determine if the value is of the specified type. This lab will help you gain a better understanding of type checking in JavaScript.


Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL javascript(("`JavaScript`")) -.-> javascript/BasicConceptsGroup(["`Basic Concepts`"]) javascript/BasicConceptsGroup -.-> javascript/variables("`Variables`") javascript/BasicConceptsGroup -.-> javascript/data_types("`Data Types`") javascript/BasicConceptsGroup -.-> javascript/arith_ops("`Arithmetic Operators`") javascript/BasicConceptsGroup -.-> javascript/comp_ops("`Comparison Operators`") javascript/BasicConceptsGroup -.-> javascript/obj_manip("`Object Manipulation`") subgraph Lab Skills javascript/variables -.-> lab-28690{{"`Check if Value Is of Type`"}} javascript/data_types -.-> lab-28690{{"`Check if Value Is of Type`"}} javascript/arith_ops -.-> lab-28690{{"`Check if Value Is of Type`"}} javascript/comp_ops -.-> lab-28690{{"`Check if Value Is of Type`"}} javascript/obj_manip -.-> lab-28690{{"`Check if Value Is of Type`"}} end

Function to Check if Value Is of Type

To check if a provided value is of a specified type, follow these steps:

  • Ensure that the value is not undefined or null by using Array.prototype.includes().
  • Use Object.prototype.constructor to compare the constructor property on the value with the specified type.
  • The function is() below performs these checks and returns true if the value is of the specified type, and false otherwise.
const is = (type, val) => ![, null].includes(val) && val.constructor === type;

You can use is() to check if a value is of various types, such as Array, ArrayBuffer, Map, RegExp, Set, WeakMap, WeakSet, String, Number, and Boolean. For example:

is(Array, [1]); // true
is(Map, new Map()); // true
is(String, ""); // true
is(Number, 1); // true
is(Boolean, true); // true

Summary

Congratulations! You have completed the Check if Value Is of Type lab. You can practice more labs in LabEx to improve your skills.

Other JavaScript Tutorials you may like