Skip to content

Commit b66368c

Browse files
authored
Update 04-value_variable_datatype.md
1 parent bc4efbd commit b66368c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

notes/English/04-value_variable_datatype.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ JavaScript provides several data types such as:
1212

1313
JavaScript also supports special values like null and undefined, which can be used to represent missing or unknown values.
1414

15-
JavaScript also allows for easy manipulation and manipulation of data through various built-in functions and methods like .map(), .filter(), .sort() etc. JavaScript also allows for easy interaction with other data sources such as JSON and XML through built-in functions like JSON.parse(), JSON.stringify(), XMLHttpRequest() etc.
16-
1715
Data manipulation is a key aspect of JavaScript and is used extensively in web development to create dynamic and interactive web pages, and for building web and mobile apps.
1816

1917
### What is value?
@@ -74,8 +72,6 @@ These primitive data types are the foundation of JavaScript and are used extensi
7472

7573
In JavaScript, non-primitive data types are complex data types that can hold multiple values and provide additional functionality. They include:
7674

77-
- Array: Represents a collection of values. Arrays are enclosed in square brackets and can hold a mix of different data types.
78-
7975
- Object: Represents a collection of key-value pairs. Objects are enclosed in curly braces and can hold a mix of different data types.
8076

8177
- Function: Represents a block of code that can be executed. Functions are first-class citizens in JavaScript and can be assigned to variables, passed as arguments, and returned as values.
@@ -99,8 +95,6 @@ Once a variable is defined, its value can be accessed and modified throughout th
9995

10096
JavaScript also allows variables to be defined without assigning a value to them, in that case they will have the value undefined.
10197

102-
JavaScript also has a feature called "hoisting" which means that variables declared using the var keyword are moved to the top of the scope and are initialized with a value of undefined before any code is executed.
103-
10498
JavaScript's variables provide a way to store and manipulate data, which is a key aspect of the language, and is used extensively in web development to create dynamic and interactive web pages and for building web and mobile apps.
10599

106100
### Primitive Data Types Examples:

0 commit comments

Comments
 (0)