From b9a6ce6a5b12b7d42a828dfa1c22396f1e8b09a1 Mon Sep 17 00:00:00 2001 From: borsec-suveran <62297262+borsec-suveran@users.noreply.github.com> Date: Thu, 19 Mar 2020 01:03:05 -0400 Subject: [PATCH] Update 00_.md --- .../00_Data Types/01_What Is a Data Type?/00_.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_Data Types and Variables/00_Data Types/01_What Is a Data Type?/00_.md b/02_Data Types and Variables/00_Data Types/01_What Is a Data Type?/00_.md index 42d95fd..9df9c0e 100755 --- a/02_Data Types and Variables/00_Data Types/01_What Is a Data Type?/00_.md +++ b/02_Data Types and Variables/00_Data Types/01_What Is a Data Type?/00_.md @@ -1,3 +1,3 @@ -A data type is a domain of values of similar characteristics. It defines the type of information stored in the computer memory (in a variable). For example, creating a integer is different from creating a character or creating an array. +A data type is a domain of values of similar characteristics. It defines the type of information stored in the computer memory (in a variable). For example, creating an integer is different from creating a character or creating an array. There are many data types in JavaScript; positive integers, alphabetical characters, etc. We will see the different data types and their uses as we move on with the course.