javascript
javascript
Data Types in Javascript
Live
bolt
Level1
Progress0%

Data Types in Javascript

CARD 1

Introduction

Login to report note issues for this section.

Data Types

A data type defines what kind of value a variable holds and what operations can be performed on it.

JavaScript has two categories of data types:

CategoryTypes
Primitivestring, number, boolean, null, undefined, bigint, symbol
Non-primitiveobject, array (and functions)