What Are Data Types in Coding and Why Are They Important?

Not all data is the same. A name is different from a number. A number is different from a yes or no answer.

Data types tell the computer exactly what kind of information it is working with — so it can handle it correctly.

Get this wrong and your program throws errors. Get it right and everything just works.

🏷️ Data Types

What Are Data Types in Programming?

📖 Definition

A data type tells the computer what kind of value a variable is holding — text, number, true/false, or nothing at all. Every value in your code has a type, whether you think about it or not.

🏷️
Think of a data type like a label on a container. “This holds text.” “This holds a number.” The label tells everyone — including the computer — exactly what’s inside and how to handle it.
💡 Real-Life Analogy

Why Data Types Matter — Real Life Analogy

Think of a form you fill out online. Each field expects a specific type of data. Put the wrong type in the wrong field — and something breaks. Computers work exactly the same way.

📋 Online Registration Form
Name “Sara Ahmed” String
Age 25 Number
Agree? true Boolean
🖥️ How It Works

How Computer Uses Data Types

When your program runs, the computer checks what type each value is — then decides what operations make sense. You can multiply two numbers. You cannot multiply two names.

✅ Works Fine
let result = 10 * 5;
// 50 — numbers multiply
❌ Makes No Sense
let result = “Sara” * “Ali”;
// NaN — can’t multiply names
What are data types in programming infographic with examples
🏷️ 5 Data Types

The Main Data Types Every Beginner Must Know

Learn these five — and you can handle almost any real-world coding situation.

📝

String — Storing Text

Any text wrapped in quotes. A name, a sentence, even a number in quotes. The moment you add quotes — it becomes a string.

let name = “Sara”; // string
let msg = “Hello, World!”; // string
let num = “42”; // also a string — has quotes!
String
🔢

Number — Storing Numbers

Whole numbers, decimals, negatives — all numbers. No quotes needed. The computer treats them as real math values.

let age = 25; // whole number
let price = 9.99; // decimal
let temp = -5; // negative number
Number

Boolean — True or False

Only two possible values — true or false. Perfect for yes/no situations — is the user logged in? Is the form valid?

let isLoggedIn = true; // yes
let isValid = false; // no
Boolean

Undefined — No Value Yet

When you declare a variable but forget to give it a value, JavaScript sets it to undefined automatically. The box exists — but nothing is inside yet.

let score; // no value given
console.log(score); // undefined
Undefined

Null — Empty on Purpose

Null means you intentionally set the variable to empty. Unlike undefined, null is a deliberate decision — “I know this exists, and I am choosing to leave it empty.”

let user = null; // empty on purpose
let data = null; // intentionally blank
Null
💡
Quick tip: String uses quotes. Number has no quotes. Boolean is true/false. Undefined happens by accident. Null happens on purpose. Keep that in mind and you will rarely get confused.
⚔️

Data Types in JavaScript vs Python

Same idea — slightly different syntax. Here’s how each language handles data types.

Both JavaScript and Python use the same basic data types — but they handle them slightly differently. You do not need to declare the type manually in either language — just assign a value and the language figures it out automatically.
JavaScript ⚡ Loosely Typed

How JavaScript Handles Data Types

JavaScript figures out the type automatically based on the value. This makes it beginner-friendly — but can cause surprises if you are not careful.

⚡ types.js
let name = “Sara”; // String
let age = 25; // Number
let active = true; // Boolean
“Sara” string
25 number
true boolean
Use typeof to check what type a variable is in JavaScript.
Python 🐍 Dynamically Typed

How Python Handles Data Types

Python works the same way — just assign a value and Python figures out the type. Python’s syntax is even cleaner and closer to plain English.

🐍 types.py
name = “Sara” # str
age = 25 # int
active = True # bool
“Sara” str
25 int
True bool
🐍 Use type() to check what type a variable is in Python.
⚡ Quick Comparison — Same Type, Different Name
Data
“Sara”
25
true / True
JavaScript
string
number
boolean
Python
str
int
bool
🔄 Type Conversion

Type Conversion — Changing One Type to Another

Sometimes you have the right data — just in the wrong type.

A user types their age in a form — it arrives as a string. But you need it as a number to do math. That’s where type conversion comes in.

🔢 String → Number

String to Number

Convert text to a number when you need to do math with user input.

“25”
Number()
25
⚡ convert.js
let str = “25”;
let num = Number(str); // 25 — now a real number
let parsed = parseInt(“25px”); // 25 — extracts the number
📝 Number → String

Number to String

Convert a number to text when you need to display it or combine it with other text.

25
String()
“25”
⚡ convert.js
let price = 19.99;
let text = String(price); // “19.99”
let msg = “Price: $” + price; // “Price: $19.99”
⚠️ Common Mistakes

Common Conversion Mistakes

The most common mistake — adding a string and a number without converting first.

❌ Wrong
“5” + 5 = “55”
String + Number = concatenation — not math!
✅ Right
Number(“5”) + 5 = 10
Convert first — then do the math!
💡 Rule: Always convert types before doing calculations with user input — forms always give you strings, even when the user types a number.
🔍 Check Type

How to Check Data Type — typeof

Not sure what type your variable is? Here’s how to find out.

Sometimes you are not sure what type a variable is — especially with user input. Both JavaScript and Python give you a simple one-word tool to check — and it takes less than a second to use.
JavaScript ⚡ typeof

Using typeof in JavaScript

Put typeof before any value — it returns the type as a string instantly.

⚡ check.js
typeof “Sara”
typeof 25
typeof true
typeof undefined
“Sara” “string”
25 “number”
true “boolean”
undefined “undefined”
Python 🐍 type()

Using type() in Python

Wrap your variable inside type() — Python tells you the type immediately.

🐍 check.py
type(“Sara”)
type(25)
type(True)
type(3.14)
“Sara” str
25 int
True bool
3.14 float
💡 When debugging — always check your variable types first. Most beginner errors come from using the wrong type without realizing it.

FAQs About Data Types

Quick answers to the questions beginners ask most

Q 01

What are the 5 main data types?

+
The 5 main data types every beginner needs to know are String, Number, Boolean, Undefined, and Null. Each stores a different kind of data.
📝
String
“Sara”
🔢
Number
25, 3.14
Boolean
true/false
Undefined
no value
Null
empty
Master these five and you can handle almost every real-world coding situation as a beginner.
Q 02

What is the difference between null and undefined?

+
Both mean “no value” — but for different reasons. Think of undefined as an accident and null as a decision.
❓ Undefined — Accident
let score;
// forgot to assign
// → undefined
Happens automatically — you forgot
⭕ Null — On Purpose
let user = null;
// intentionally empty
// → null
Your decision — intentionally empty
💡 Simple rule: Undefined = the computer did it. Null = you did it on purpose.
Q 03

Can a variable change its data type?

+
Yes — in JavaScript and Python, a variable can change its type anytime. This is called dynamic typing.
⚡ dynamic.js
let data = 42; // Number
data = “Hello”; // now String — valid!
data = true; // now Boolean — still valid
This works — but always be intentional. Changing types carelessly is one of the most common causes of beginner bugs.
Still have questions? Browse our free tutorials.
Browse Tutorials →