SlideShare a Scribd company logo
JavaScript 
Basics 
By :: Ahmed Murtaza
//Comments
Use it, it will not make you freeze!!
// Single Line comment 
/* 
Multiline Comments 
Multiline Comments 
Multiline Comments 
*/
Variables
Re-useable Values
var name = “Ahmed Murtaza”;
Declaration keyword 
var name = “Ahmed Murtaza”; 
Variable name 
Variable value 
terminator
Adding Types
var name = “Ahmed Murtaza”; 
var num = 27; 
var _bool = false; 
var obj = {};
var name = “Ahmed Murtaza”; 
var num = 27; 
var _bool = false; 
var obj = {}; 
String 
Number 
Boolean 
Object
5 + “4” 
5 + null 
4 == “4.00” 
null == undefined 
0 == false 
0 == null 
null == false
typeof null == “object” 
typeof function (){} == “function”
Catch me 
@ahmedgmurtaza

More Related Content

PPTX
Java script basics
PPT
Javascript sivasoft
PDF
Programming style
PDF
Javascript
PPTX
JavaScript Basics
PPTX
Javascript - Array - Writing
ODP
JavaScript Web Development
PPTX
JavaScript Operators
Java script basics
Javascript sivasoft
Programming style
Javascript
JavaScript Basics
Javascript - Array - Writing
JavaScript Web Development
JavaScript Operators

Viewers also liked (16)

PDF
JavaScript: From the ground up
PPTX
Javascript basics
PPT
A Deeper look into Javascript Basics
PPT
Array
PDF
Extending built in objects
PPTX
Javascript - Array - Creating Array
PPT
JavaScript Basics
PPTX
JavaScript Basics and Trends
PPTX
Javascript - Essentials
PDF
Basics of JavaScript
PPTX
JavaScript, VBScript, AJAX, CGI
PDF
Fundamental JavaScript [UTC, March 2014]
PDF
Introduction to JavaScript
PPT
Introduction to Javascript
PPT
JavaScript - An Introduction
PDF
JavaScript Programming
JavaScript: From the ground up
Javascript basics
A Deeper look into Javascript Basics
Array
Extending built in objects
Javascript - Array - Creating Array
JavaScript Basics
JavaScript Basics and Trends
Javascript - Essentials
Basics of JavaScript
JavaScript, VBScript, AJAX, CGI
Fundamental JavaScript [UTC, March 2014]
Introduction to JavaScript
Introduction to Javascript
JavaScript - An Introduction
JavaScript Programming
Ad

Recently uploaded (20)

PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
System and Network Administraation Chapter 3
PDF
Understanding Forklifts - TECH EHS Solution
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PPTX
history of c programming in notes for students .pptx
PPTX
L1 - Introduction to python Backend.pptx
PDF
Nekopoi APK 2025 free lastest update
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
Digital Strategies for Manufacturing Companies
PPTX
Transform Your Business with a Software ERP System
PPTX
Introduction to Artificial Intelligence
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PTS Company Brochure 2025 (1).pdf.......
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Upgrade and Innovation Strategies for SAP ERP Customers
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
System and Network Administraation Chapter 3
Understanding Forklifts - TECH EHS Solution
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
history of c programming in notes for students .pptx
L1 - Introduction to python Backend.pptx
Nekopoi APK 2025 free lastest update
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 41
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Digital Strategies for Manufacturing Companies
Transform Your Business with a Software ERP System
Introduction to Artificial Intelligence
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Ad

Javascript Basics