From fe85713b0976e73892a18d8d5ea65e112e2c4dab Mon Sep 17 00:00:00 2001 From: hbzzll Date: Fri, 6 Mar 2026 19:39:36 +0900 Subject: [PATCH] fix(curriculum): add bigint type and correct the primitive types list (#65034) --- .../6732b73d25cc01251b778043.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-introduction-to-javascript-objects-and-their-properties/6732b73d25cc01251b778043.md b/curriculum/challenges/english/blocks/lecture-introduction-to-javascript-objects-and-their-properties/6732b73d25cc01251b778043.md index a1d7c55f29f..c5d53eee3a2 100644 --- a/curriculum/challenges/english/blocks/lecture-introduction-to-javascript-objects-and-their-properties/6732b73d25cc01251b778043.md +++ b/curriculum/challenges/english/blocks/lecture-introduction-to-javascript-objects-and-their-properties/6732b73d25cc01251b778043.md @@ -11,7 +11,7 @@ In JavaScript, understanding the difference between primitive and non-primitive These two categories of data types behave differently in terms of how they are stored in memory and how they are manipulated in your programs. -Primitive data types are the simplest form of data in JavaScript. They include numbers, strings, booleans, `null`, `undefined`, and symbols. These types are called "primitive" because they represent single values and are not objects. +Primitive data types are the simplest form of data in JavaScript. They include number, bigint, string, boolean, `null`, `undefined`, and symbol. These types are called "primitive" because they represent single values and are not objects. When you work with primitive data types, you're dealing directly with their values. For example, when you create a variable with a primitive value, that value is stored directly in the variable.