SlideShare a Scribd company logo
1 of 24
By: Sahil Goel
WHAT IS JAVASCRIPT?
• JavaScript is a scripting language (a scripting language is a lightweight
  programming language)
• JavaScript was designed to add interactivity to HTML pages
• JavaScript is an interpreted language (means that scripts execute without
  preliminary compilation)
• Everyone can use JavaScript without purchasing a license
• JavaScript is used in millions of Web pages to improve the design, validate
  forms, detect browsers, create cookies, and much more.
• JavaScript works in all major browsers, such as Internet
  Explorer, Mozilla, Firefox, Opera.
Where did it come from
• Originally called LiveScript at Netscape started out to be a server side
  scripting language for providing database connectivity and dynamic HTML
  generation on Netscape Web Servers.
• Netscape decided it would be a good thing for their browsers and servers
  to speak the same language so it got included in Navigator.
• Netscape in alliance with Sun jointly announced the language and its new
  name Java Script
• Because of rapid acceptance by the web community Microsoft forced to
  include in IE Browser
Are Java and JavaScript the Same?

NO! Java and JavaScript are two completely different languages
in both concept and design!

   • Java (developed by Sun            • JavaScript (developed by
     Microsystems) is a powerful and     Netscape), is a smaller language
     much more complex                   that does not create applets or
     programming language - in the       standalone applications. In its
     same category as C and C++.         most common form
   • It can be used to create            today, JavaScript resides inside
     standalone applications and a       HTML documents, and can
     special type of mini                provide levels of interactivity far
     application, called an applet.      beyond typically flat HTML pages
How to Put a JavaScript Into an
                                    HTML Page?

We can add JavaScript in three ways in our
document:
1) Inline
<input type="button" id="hello-world2" value="Hello" onClick="alert('Hello World!');" />

2) Embedded
<script type="text/javascript">
function helloWorld() { alert('Hello World!') ; }
</script>

3) External
<head> <script type="text/javascript" language="javascript" src="hello.js"></script></head>
How to Put a JavaScript Into an HTML Page?

                                                    Ending Statements With a Semicolon?
        <html>
                                                  • With traditional programming
        <body>
                                                    languages, like C++ and Java, each code
        <script type="text/javascript">             statement has to end with a semicolon
        document.write("Hello World!");             (;).
        </script>                                 • Many programmers continue this habit
        </body>                                     when writing JavaScript, but in
        </html>                                     general, semicolons are optional!
                                                    However, semicolons are required if you
                                                    want to put more than one statement
                                                    on a single line.
NOTE: At times JavaScript is disabled in some browsers and it becomes difficult to get
appropriate behavior and the user get confused, so to avoid such conditions we should check if
it is enable or we should display an appropriate message. We can do this with the help of:
<noscript> <p>This will not be displayed if JavaScript is enabled</p> </noscript>
JavaScript Terminology

Objects:                                Properties:
• Almost everything in JavaScript       • Properties are object attributes.
   is an Object: String, Number,        • Object properties are defined by
   Array, Function....                     using the object's name, a
• An object is just a special kind of      period, and the property name.
   data, with properties and            • e.g., background color is
   methods.                                expressed by:
• Objects have properties that act         document.bgcolor
   as modifiers.                           document is the object
                                           .bgcolor is the property.
   Eg: personObj=new Object();
   personObj.firstname="John";
   personObj.lastname="Doe";
   personObj.age=50;
   personObj.eyecolor="blue";
JavaScript Terminology
Methods:                             Events:
• Methods are actions applied to     • Events associate an object with
   particular objects. Methods are      an action.
   what objects can do.              e.g., the onclick event handler
e.g.,                                action can change an image.
document.write(”Hello                e.g., the onSubmit event handler
World")                              sends a form.
document is the object.              • User actions trigger events.
write is the method.
JavaScript Terminology
Functions:                            Values:
• Functions are named statements      • Values are bits of information.
    that performs tasks.              • Values, types and some examples
e.g. function doWhatever()                include:
          {                           Number: 1, 2, 3, etc.
             statement here           String: characters enclosed in quotes.
          }                           Boolean: true or false.
The curly braces contain the          Object: image, form
statements of the function.           Function: validate, doWhatever
• JavaScript has built-in
    functions, and we can write our
    own.
JavaScript Terminology
Variables:                           Expressions :
• Variables contain values and use   • Expressions are commands that
   the equal sign to specify their      assign values to variables.
   value.                            • Expressions always use an
• Variables are created by              assignment operator, such as
   declaration using the var            the equals sign.
   command with or without an        e.g., var month = May; is an
   initial value state.              expression.
e.g. var month;
                                     • Expressions end with a
e.g. var month = April;                 semicolon.
JavaScript Terminology
Operators:
• Operators are used to handle variables.
Types of operators with examples:
Arithmetic operators, such as plus(+).
Comparisons operators, such as equals(==).
Logical operators, such as AND.
Assignment like (=).
+ Operator: The + operator can also be used to add string variables or text
values together.
Condition statements
• Very often when we write code, we want to perform different actions
  for different decisions. we can use conditional statements in our code
  to do this.

In JavaScript we have the following conditional statements:
• if statement - use this statement if we want to execute some code only
    if a specified condition is true
• if...else statement - use this statement if we want to execute some
    code if the condition is true and another code if the condition is false
• if...else if....else statement - use this statement if we want to select one
    of many blocks of code to be executed
• switch statement - use this statement if we want to select one of many
    blocks of code to be executed
Loops
JavaScript performs several types of repetitive operations, called "looping".
• for loop: The for loop is executed till a specified condition returns false
for (initialization; condition; increment)
{
   // statements
}
• while loop: The while statement repeats a loop as long as a specified
     condition evaluates to true.
while (condition)
{
  // statements
}
Arrays
Arrays are usually a group of the same variable type that use an index number
to distinguish them from each other. Arrays are one way of keeping a program
more organized.


  Creating arrays:                               Initializing an array:
  •   var badArray = new Array(10);              •   Var myArray= new Array(“January”,” February”,”
      // Creates an empty Array that's sized         March”);
      for 10 elements.                           •   var myArray = ['January', 'February', 'March'];
  •    var goodArray= [10];                          document.write(myArray[0]);//output: January
      //Creates an Array with 10 as the first        document.write(myArray[1]);//output: February
      element.                                       document.write(myArray[2]);//output: March
JavaScript Popup Boxes
It is possible to make three different kinds of
popup boxes:
1) Alert Box
• An alert box is often used if we want to make sure information comes
  through to the user.
• When an alert box pops up, the user will have to click "OK" to proceed.


  <script>
  alert("Hello World")
  </script>
2) Confirm Box
• A confirm box is often used if we want the user to verify or accept
  something.
• When a confirm box pops up, the user will have to click either "OK" or
  "Cancel" to proceed.
• If the user clicks "OK", the box returns true. If the user clicks
  "Cancel", the box returns false.


    <script>
    var r=confirm("Press a button!");
    if (r==true)
    document.write("You pressed OK!“);
    else
    document.write("You pressed Cancel!“);
    </script>
3) Prompt Box
• A prompt box is often used if you want the user to input a value before
  entering a page.
• When a prompt box pops up, the user will have to click either "OK" or
  "Cancel" to proceed after entering an input value.
• If the user clicks "OK“, the box returns the input value. If the user clicks
  "Cancel“, the box returns null.



     <script>
     x=prompt (“Please enter your name”, “sahil goel ”)
     document.write(“Welcome <br>”+x)
     </script>
DOM
• The Document Object Model (DOM) is the model that describes how all
    elements in an HTML page, like input fields, images, paragraphs etc., are
    related to the topmost structure: the document itself. By calling the
    element by its proper DOM name, we can influence it.
• In DOM each object, whatever it may be exactly, is a Node.
Node object: We can traverse through different nodes with the help of certain
node properties and methods:
Eg: firstChild, lastChild, parentNode, nextSibling, previousSibling etc.
Document object:The Document object gives us access to the document's
data. Some document methods are:
Eg: getElementById(), getElementsByTagName() etc.
What is a Cookie?
A cookie is a small text file that JavaScript can use to store information about a user.
• There are two types of cookies:
    – 1) Session Cookies
    – 2) Persistent Cookies
Session Cookies :A browser stores session cookies in memory.
•   Once a browser session ends, browser loses the contents of a session cookie.

–Persistent Cookies: Browsers store persistent cookies to a user’s hard
drive.
• We can use persistent cookies to get information about a user that we can use
    when the user returns to a website at a later date.
More about Cookies
• JavaScript deals with cookies as objects.
• JavaScript works with cookies using the document.cookie
  attribute.

Examples of cookie usage:
• User preferences
• Saving form data
• Tracking online shopping habits
Parts of a Cookie Object
• name – An identifier by which we reference a particular cookie.
• value – The information we wish to save, in reference to a particular
  cookie.
• expires – A GMT-formatted date specifying the date (in milliseconds)
  when a cookie will expire.
• path – Specifies the path of the web server in which the cookie is
  valid. By default, set to the path of the page that set the cookie.
  However, commonly specified to /, the root directory.
• domain – Specifies the domain for which the cookie is valid. Set, by
  default, only to the full domain of a page..
• secure – Specifies that a web browser needs a secure HTTP
  connection to access a cookie.
Setting a Cookie – General Form:
document.cookie = “cookieName = cookieValue;
  expires = expireDate; path = pathName;
      domain = domainName; secure”;


Escape Sequences:
• When we set cookie values, we must first convert the string values that
  set a cookie so that the string doesn’t contain white space, commas or
  semi-colons.
• We can use JavaScript’s intrinsic escape() function to convert white
  space and punctuation with escape sequences.
• Conversely, we can use unescape() to view text encoded with
  escape().
Cookie limitations:

• A given domain may only set 20 cookies per machine.
• A single browser may only store 300 cookies.
• Browsers limit a single cookie to 4KB.
THANK YOU!

More Related Content

What's hot

Cross-Site Scripting (XSS)
Cross-Site Scripting (XSS)Cross-Site Scripting (XSS)
Cross-Site Scripting (XSS)Daniel Tumser
 
Intro to Asynchronous Javascript
Intro to Asynchronous JavascriptIntro to Asynchronous Javascript
Intro to Asynchronous JavascriptGarrett Welson
 
Cross site scripting (xss) attacks issues and defense - by sandeep kumbhar
Cross site scripting (xss) attacks issues and defense - by sandeep kumbharCross site scripting (xss) attacks issues and defense - by sandeep kumbhar
Cross site scripting (xss) attacks issues and defense - by sandeep kumbharSandeep Kumbhar
 
The Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG FilesThe Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG FilesMario Heiderich
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An IntroductionManvendra Singh
 
OWASP Top 10 Web Application Vulnerabilities
OWASP Top 10 Web Application VulnerabilitiesOWASP Top 10 Web Application Vulnerabilities
OWASP Top 10 Web Application VulnerabilitiesSoftware Guru
 
Node.js Express
Node.js  ExpressNode.js  Express
Node.js ExpressEyal Vardi
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design Mindy McAdams
 
learn what React JS is & why we should use React JS .
learn what React JS is & why we should use React JS .learn what React JS is & why we should use React JS .
learn what React JS is & why we should use React JS .paradisetechsoftsolutions
 
Asynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesAsynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesHùng Nguyễn Huy
 

What's hot (20)

Cross-Site Scripting (XSS)
Cross-Site Scripting (XSS)Cross-Site Scripting (XSS)
Cross-Site Scripting (XSS)
 
Javascript basics
Javascript basicsJavascript basics
Javascript basics
 
Intro to Asynchronous Javascript
Intro to Asynchronous JavascriptIntro to Asynchronous Javascript
Intro to Asynchronous Javascript
 
Workshop React.js
Workshop React.jsWorkshop React.js
Workshop React.js
 
Cross site scripting (xss) attacks issues and defense - by sandeep kumbhar
Cross site scripting (xss) attacks issues and defense - by sandeep kumbharCross site scripting (xss) attacks issues and defense - by sandeep kumbhar
Cross site scripting (xss) attacks issues and defense - by sandeep kumbhar
 
CQRS + Event Sourcing in PHP
CQRS + Event Sourcing in PHPCQRS + Event Sourcing in PHP
CQRS + Event Sourcing in PHP
 
JSP Error handling
JSP Error handlingJSP Error handling
JSP Error handling
 
Same origin policy
Same origin policySame origin policy
Same origin policy
 
The Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG FilesThe Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG Files
 
Clean code
Clean codeClean code
Clean code
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
 
OWASP Top 10 Web Application Vulnerabilities
OWASP Top 10 Web Application VulnerabilitiesOWASP Top 10 Web Application Vulnerabilities
OWASP Top 10 Web Application Vulnerabilities
 
CSRF Basics
CSRF BasicsCSRF Basics
CSRF Basics
 
Node.js Express
Node.js  ExpressNode.js  Express
Node.js Express
 
Java Programming
Java ProgrammingJava Programming
Java Programming
 
Clean coding-practices
Clean coding-practicesClean coding-practices
Clean coding-practices
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
 
learn what React JS is & why we should use React JS .
learn what React JS is & why we should use React JS .learn what React JS is & why we should use React JS .
learn what React JS is & why we should use React JS .
 
Learn react-js
Learn react-jsLearn react-js
Learn react-js
 
Asynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesAsynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & Promises
 

Viewers also liked

JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1Gene Babon
 
Pinned Sites IE 9 Lightup
Pinned Sites IE 9 LightupPinned Sites IE 9 Lightup
Pinned Sites IE 9 LightupWes Yanaga
 
Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1Wes Yanaga
 
Windows Phone 7 Unleashed Session 2
Windows Phone 7 Unleashed Session 2Windows Phone 7 Unleashed Session 2
Windows Phone 7 Unleashed Session 2Wes Yanaga
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPTGo4Guru
 

Viewers also liked (6)

JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1
 
Pinned Sites IE 9 Lightup
Pinned Sites IE 9 LightupPinned Sites IE 9 Lightup
Pinned Sites IE 9 Lightup
 
Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1
 
Windows Phone 7 Unleashed Session 2
Windows Phone 7 Unleashed Session 2Windows Phone 7 Unleashed Session 2
Windows Phone 7 Unleashed Session 2
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
 

Similar to What is JavaScript

Java Script basics and DOM
Java Script basics and DOMJava Script basics and DOM
Java Script basics and DOMSukrit Gupta
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptxAlkanthiSomesh
 
Javascript
JavascriptJavascript
JavascriptMozxai
 
WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxTusharTikia
 
JavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJamshid Hashimi
 
Hsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfHsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfAAFREEN SHAIKH
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scriptsch samaram
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdfwildcat9335
 
Javascript Basics by Bonny
Javascript Basics by BonnyJavascript Basics by Bonny
Javascript Basics by BonnyBonny Chacko
 
Thinkful - Intro to JavaScript
Thinkful - Intro to JavaScriptThinkful - Intro to JavaScript
Thinkful - Intro to JavaScriptTJ Stalcup
 
JavaScript with Syntax & Implementation
JavaScript with Syntax & ImplementationJavaScript with Syntax & Implementation
JavaScript with Syntax & ImplementationSoumen Santra
 
Intro to JavaScript - Thinkful LA, June 2017
Intro to JavaScript - Thinkful LA, June 2017Intro to JavaScript - Thinkful LA, June 2017
Intro to JavaScript - Thinkful LA, June 2017Thinkful
 
Intro to javascript (6:27)
Intro to javascript (6:27)Intro to javascript (6:27)
Intro to javascript (6:27)David Coulter
 
Java script.pptx v
Java script.pptx                                     vJava script.pptx                                     v
Java script.pptx v22x026
 

Similar to What is JavaScript (20)

Java script
Java scriptJava script
Java script
 
JavaScript_III.pptx
JavaScript_III.pptxJavaScript_III.pptx
JavaScript_III.pptx
 
Java Script basics and DOM
Java Script basics and DOMJava Script basics and DOM
Java Script basics and DOM
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptx
 
Javascript
JavascriptJavascript
Javascript
 
WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
 
JavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQuery
 
Hsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfHsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdf
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
 
Java script
Java scriptJava script
Java script
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdf
 
Javascript Basics by Bonny
Javascript Basics by BonnyJavascript Basics by Bonny
Javascript Basics by Bonny
 
Thinkful - Intro to JavaScript
Thinkful - Intro to JavaScriptThinkful - Intro to JavaScript
Thinkful - Intro to JavaScript
 
Lecture 5 javascript
Lecture 5 javascriptLecture 5 javascript
Lecture 5 javascript
 
JavaScript with Syntax & Implementation
JavaScript with Syntax & ImplementationJavaScript with Syntax & Implementation
JavaScript with Syntax & Implementation
 
Java script
Java scriptJava script
Java script
 
Intro to JavaScript - Thinkful LA, June 2017
Intro to JavaScript - Thinkful LA, June 2017Intro to JavaScript - Thinkful LA, June 2017
Intro to JavaScript - Thinkful LA, June 2017
 
WEB TECHNOLOGIES JavaScript
WEB TECHNOLOGIES JavaScriptWEB TECHNOLOGIES JavaScript
WEB TECHNOLOGIES JavaScript
 
Intro to javascript (6:27)
Intro to javascript (6:27)Intro to javascript (6:27)
Intro to javascript (6:27)
 
Java script.pptx v
Java script.pptx                                     vJava script.pptx                                     v
Java script.pptx v
 

More from Sukrit Gupta

C Language - Switch and For Loop
C Language - Switch and For LoopC Language - Switch and For Loop
C Language - Switch and For LoopSukrit Gupta
 
The n Queen Problem
The n Queen ProblemThe n Queen Problem
The n Queen ProblemSukrit Gupta
 
Future Technologies - Integral Cord
Future Technologies - Integral CordFuture Technologies - Integral Cord
Future Technologies - Integral CordSukrit Gupta
 
Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE Sukrit Gupta
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessionsSukrit Gupta
 

More from Sukrit Gupta (8)

C Language - Switch and For Loop
C Language - Switch and For LoopC Language - Switch and For Loop
C Language - Switch and For Loop
 
The n Queen Problem
The n Queen ProblemThe n Queen Problem
The n Queen Problem
 
Future Technologies - Integral Cord
Future Technologies - Integral CordFuture Technologies - Integral Cord
Future Technologies - Integral Cord
 
Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE
 
MySql
MySqlMySql
MySql
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
Html and css
Html and cssHtml and css
Html and css
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessions
 

Recently uploaded

Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 

Recently uploaded (20)

Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 

What is JavaScript

  • 2. WHAT IS JAVASCRIPT? • JavaScript is a scripting language (a scripting language is a lightweight programming language) • JavaScript was designed to add interactivity to HTML pages • JavaScript is an interpreted language (means that scripts execute without preliminary compilation) • Everyone can use JavaScript without purchasing a license • JavaScript is used in millions of Web pages to improve the design, validate forms, detect browsers, create cookies, and much more. • JavaScript works in all major browsers, such as Internet Explorer, Mozilla, Firefox, Opera.
  • 3. Where did it come from • Originally called LiveScript at Netscape started out to be a server side scripting language for providing database connectivity and dynamic HTML generation on Netscape Web Servers. • Netscape decided it would be a good thing for their browsers and servers to speak the same language so it got included in Navigator. • Netscape in alliance with Sun jointly announced the language and its new name Java Script • Because of rapid acceptance by the web community Microsoft forced to include in IE Browser
  • 4. Are Java and JavaScript the Same? NO! Java and JavaScript are two completely different languages in both concept and design! • Java (developed by Sun • JavaScript (developed by Microsystems) is a powerful and Netscape), is a smaller language much more complex that does not create applets or programming language - in the standalone applications. In its same category as C and C++. most common form • It can be used to create today, JavaScript resides inside standalone applications and a HTML documents, and can special type of mini provide levels of interactivity far application, called an applet. beyond typically flat HTML pages
  • 5. How to Put a JavaScript Into an HTML Page? We can add JavaScript in three ways in our document: 1) Inline <input type="button" id="hello-world2" value="Hello" onClick="alert('Hello World!');" /> 2) Embedded <script type="text/javascript"> function helloWorld() { alert('Hello World!') ; } </script> 3) External <head> <script type="text/javascript" language="javascript" src="hello.js"></script></head>
  • 6. How to Put a JavaScript Into an HTML Page? Ending Statements With a Semicolon? <html> • With traditional programming <body> languages, like C++ and Java, each code <script type="text/javascript"> statement has to end with a semicolon document.write("Hello World!"); (;). </script> • Many programmers continue this habit </body> when writing JavaScript, but in </html> general, semicolons are optional! However, semicolons are required if you want to put more than one statement on a single line. NOTE: At times JavaScript is disabled in some browsers and it becomes difficult to get appropriate behavior and the user get confused, so to avoid such conditions we should check if it is enable or we should display an appropriate message. We can do this with the help of: <noscript> <p>This will not be displayed if JavaScript is enabled</p> </noscript>
  • 7. JavaScript Terminology Objects: Properties: • Almost everything in JavaScript • Properties are object attributes. is an Object: String, Number, • Object properties are defined by Array, Function.... using the object's name, a • An object is just a special kind of period, and the property name. data, with properties and • e.g., background color is methods. expressed by: • Objects have properties that act document.bgcolor as modifiers. document is the object .bgcolor is the property. Eg: personObj=new Object(); personObj.firstname="John"; personObj.lastname="Doe"; personObj.age=50; personObj.eyecolor="blue";
  • 8. JavaScript Terminology Methods: Events: • Methods are actions applied to • Events associate an object with particular objects. Methods are an action. what objects can do. e.g., the onclick event handler e.g., action can change an image. document.write(”Hello e.g., the onSubmit event handler World") sends a form. document is the object. • User actions trigger events. write is the method.
  • 9. JavaScript Terminology Functions: Values: • Functions are named statements • Values are bits of information. that performs tasks. • Values, types and some examples e.g. function doWhatever() include: { Number: 1, 2, 3, etc. statement here String: characters enclosed in quotes. } Boolean: true or false. The curly braces contain the Object: image, form statements of the function. Function: validate, doWhatever • JavaScript has built-in functions, and we can write our own.
  • 10. JavaScript Terminology Variables: Expressions : • Variables contain values and use • Expressions are commands that the equal sign to specify their assign values to variables. value. • Expressions always use an • Variables are created by assignment operator, such as declaration using the var the equals sign. command with or without an e.g., var month = May; is an initial value state. expression. e.g. var month; • Expressions end with a e.g. var month = April; semicolon.
  • 11. JavaScript Terminology Operators: • Operators are used to handle variables. Types of operators with examples: Arithmetic operators, such as plus(+). Comparisons operators, such as equals(==). Logical operators, such as AND. Assignment like (=). + Operator: The + operator can also be used to add string variables or text values together.
  • 12. Condition statements • Very often when we write code, we want to perform different actions for different decisions. we can use conditional statements in our code to do this. In JavaScript we have the following conditional statements: • if statement - use this statement if we want to execute some code only if a specified condition is true • if...else statement - use this statement if we want to execute some code if the condition is true and another code if the condition is false • if...else if....else statement - use this statement if we want to select one of many blocks of code to be executed • switch statement - use this statement if we want to select one of many blocks of code to be executed
  • 13. Loops JavaScript performs several types of repetitive operations, called "looping". • for loop: The for loop is executed till a specified condition returns false for (initialization; condition; increment) { // statements } • while loop: The while statement repeats a loop as long as a specified condition evaluates to true. while (condition) { // statements }
  • 14. Arrays Arrays are usually a group of the same variable type that use an index number to distinguish them from each other. Arrays are one way of keeping a program more organized. Creating arrays: Initializing an array: • var badArray = new Array(10); • Var myArray= new Array(“January”,” February”,” // Creates an empty Array that's sized March”); for 10 elements. • var myArray = ['January', 'February', 'March']; • var goodArray= [10]; document.write(myArray[0]);//output: January //Creates an Array with 10 as the first document.write(myArray[1]);//output: February element. document.write(myArray[2]);//output: March
  • 15. JavaScript Popup Boxes It is possible to make three different kinds of popup boxes: 1) Alert Box • An alert box is often used if we want to make sure information comes through to the user. • When an alert box pops up, the user will have to click "OK" to proceed. <script> alert("Hello World") </script>
  • 16. 2) Confirm Box • A confirm box is often used if we want the user to verify or accept something. • When a confirm box pops up, the user will have to click either "OK" or "Cancel" to proceed. • If the user clicks "OK", the box returns true. If the user clicks "Cancel", the box returns false. <script> var r=confirm("Press a button!"); if (r==true) document.write("You pressed OK!“); else document.write("You pressed Cancel!“); </script>
  • 17. 3) Prompt Box • A prompt box is often used if you want the user to input a value before entering a page. • When a prompt box pops up, the user will have to click either "OK" or "Cancel" to proceed after entering an input value. • If the user clicks "OK“, the box returns the input value. If the user clicks "Cancel“, the box returns null. <script> x=prompt (“Please enter your name”, “sahil goel ”) document.write(“Welcome <br>”+x) </script>
  • 18. DOM • The Document Object Model (DOM) is the model that describes how all elements in an HTML page, like input fields, images, paragraphs etc., are related to the topmost structure: the document itself. By calling the element by its proper DOM name, we can influence it. • In DOM each object, whatever it may be exactly, is a Node. Node object: We can traverse through different nodes with the help of certain node properties and methods: Eg: firstChild, lastChild, parentNode, nextSibling, previousSibling etc. Document object:The Document object gives us access to the document's data. Some document methods are: Eg: getElementById(), getElementsByTagName() etc.
  • 19. What is a Cookie? A cookie is a small text file that JavaScript can use to store information about a user. • There are two types of cookies: – 1) Session Cookies – 2) Persistent Cookies Session Cookies :A browser stores session cookies in memory. • Once a browser session ends, browser loses the contents of a session cookie. –Persistent Cookies: Browsers store persistent cookies to a user’s hard drive. • We can use persistent cookies to get information about a user that we can use when the user returns to a website at a later date.
  • 20. More about Cookies • JavaScript deals with cookies as objects. • JavaScript works with cookies using the document.cookie attribute. Examples of cookie usage: • User preferences • Saving form data • Tracking online shopping habits
  • 21. Parts of a Cookie Object • name – An identifier by which we reference a particular cookie. • value – The information we wish to save, in reference to a particular cookie. • expires – A GMT-formatted date specifying the date (in milliseconds) when a cookie will expire. • path – Specifies the path of the web server in which the cookie is valid. By default, set to the path of the page that set the cookie. However, commonly specified to /, the root directory. • domain – Specifies the domain for which the cookie is valid. Set, by default, only to the full domain of a page.. • secure – Specifies that a web browser needs a secure HTTP connection to access a cookie.
  • 22. Setting a Cookie – General Form: document.cookie = “cookieName = cookieValue; expires = expireDate; path = pathName; domain = domainName; secure”; Escape Sequences: • When we set cookie values, we must first convert the string values that set a cookie so that the string doesn’t contain white space, commas or semi-colons. • We can use JavaScript’s intrinsic escape() function to convert white space and punctuation with escape sequences. • Conversely, we can use unescape() to view text encoded with escape().
  • 23. Cookie limitations: • A given domain may only set 20 cookies per machine. • A single browser may only store 300 cookies. • Browsers limit a single cookie to 4KB.