SlideShare a Scribd company logo
Basics JavaScript
By Sazilah Salam
Learning Outcome
At the end of this lesson, students should be
able to:
i) Insert JavaScripts in HTML documents
ii) Declare JavaScript variables in HTML
documents
JavaScript Syntax
• The HTML <script> tag is used to insert a JavaScript into an
HTML page.

The <script> tags tell
the browser to expect
a script in between
them.

<html>
<body>
<script type="text/javascript">
document.write("JavaScript is not Java");
</script>
</body>
This part that
</html>

writes/display the
actual text
3
Where to put your scripts?
1.
2.
3.
4.

Scripts in <head>
Scripts in <body>
In both the body and the head section
Using an External JavaScript

4
Where to put your scripts? <head>.
<html>
<head>
<script type="text/javascript">
function message()
{
alert("This alert box was called with the onload event");
}
</script>
</head>

<body onload="message()">
</body>
</html>
5
Where to put your scripts? <body>.
<html>
<body>
<script type="text/javascript">
document.write("JavaScript is not Java");
</script>
</body>
</html>
6
Where to put your scripts? <head> and <body>
• <html>
<head>
<script type="text/javascript">
function message()
{
alert("This alert box was called with the onload event");
}
</script>
</head>
<body onload="message()">
<script type="text/javascript">
document.write("This message is written by JavaScript");
</script>
</body>
</html>

7
Where to put your scripts? External javascript
• <html>
<head>
<script type="text/javascript" src="xxx.js"></script>
</head>
<body>
JavaScript external
</body>
file with a .js file
</html>
extension.

8
9

JAVASCRIPT VARIABLES
Rules for variable names:
• Variable names are case sensitive
• They must begin with a letter or the underscore character
• You can create a variable with the var statement:
var strname = some value

• You can also create a variable without the var statement:
strname = some value
•

Assign a Value to a Variable
var strname = "Hege"
Or like this:

strname = "Hege"
<html>
<body>
<script type="text/javascript">
var firstname;
firstname=“Toot";
document.write(firstname);
document.write("<br />");
firstname=“Tweet";
document.write(firstname);
</script>

javascript variables
firstname=“Toot";

variable

value

<p>The script above declares a variable, assigns a value to it, displays
the value, changes the value, and displays the value again.</p>
</body>
</html>

More Related Content

What's hot

Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
Shrijan Tiwari
 
JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1
Gene Babon
 
Java Script
Java ScriptJava Script
Java Script
SURBHI SAROHA
 
Jsp & struts
Jsp & strutsJsp & struts
Jsp & struts
Hansi Thenuwara
 
Ajax
AjaxAjax
Ajax
devisp
 
2310 b 08
2310 b 082310 b 08
2310 b 08
Krazy Koder
 
2310 b 06
2310 b 062310 b 06
2310 b 06
Krazy Koder
 
JavaScript Introduction
JavaScript IntroductionJavaScript Introduction
JavaScript Introduction
Jainul Musani
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
ch samaram
 
JavaScript - Part-1
JavaScript - Part-1JavaScript - Part-1
JavaScript - Part-1
Jainul Musani
 
Web&java. jsp
Web&java. jspWeb&java. jsp
Web&java. jsp
Asya Dudnik
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
DivyaKS12
 
Java ppt
Java pptJava ppt
Java ppt
VivekPandit33
 
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
JavaEE Trainers
 
Java script by Act Academy
Java script by Act AcademyJava script by Act Academy
Java script by Act Academy
actanimation
 
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes AhmedabadJava Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
NicheTech Com. Solutions Pvt. Ltd.
 

What's hot (16)

Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
 
JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1
 
Java Script
Java ScriptJava Script
Java Script
 
Jsp & struts
Jsp & strutsJsp & struts
Jsp & struts
 
Ajax
AjaxAjax
Ajax
 
2310 b 08
2310 b 082310 b 08
2310 b 08
 
2310 b 06
2310 b 062310 b 06
2310 b 06
 
JavaScript Introduction
JavaScript IntroductionJavaScript Introduction
JavaScript Introduction
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
 
JavaScript - Part-1
JavaScript - Part-1JavaScript - Part-1
JavaScript - Part-1
 
Web&java. jsp
Web&java. jspWeb&java. jsp
Web&java. jsp
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
 
Java ppt
Java pptJava ppt
Java ppt
 
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
 
Java script by Act Academy
Java script by Act AcademyJava script by Act Academy
Java script by Act Academy
 
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes AhmedabadJava Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
 

Viewers also liked

George Waters
George WatersGeorge Waters
George Waters
George W. Waters Jr
 
Diari del 18 d'octubre de 2013
Diari del 18 d'octubre de 2013Diari del 18 d'octubre de 2013
Diari del 18 d'octubre de 2013
Virginia Yañez Aldecoa
 
Guanajuato
GuanajuatoGuanajuato
Guanajuato
Polly Tadeo
 
водоспади
водоспадиводоспади
водоспади
ebozuh23cfif1993
 
Order of Marechaussee
Order of MarechausseeOrder of Marechaussee
Order of Marechaussee
Ronald Hussung
 
El nivel de iconicidad
El nivel de iconicidadEl nivel de iconicidad
El nivel de iconicidad
MarinaFernandezBisbal
 
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
Tero Luukkonen
 
Presi dalla rete: rischi e opportunità
Presi dalla rete: rischi e opportunitàPresi dalla rete: rischi e opportunità
Presi dalla rete: rischi e opportunità
Caterina Policaro
 
Literatura mediaval. alumno pcpi
Literatura mediaval. alumno pcpiLiteratura mediaval. alumno pcpi
Literatura mediaval. alumno pcpi
hortenfc
 
Malnutrition
MalnutritionMalnutrition
Malnutrition
kaoseu
 
Ecc3601 lecture 1
Ecc3601 lecture 1Ecc3601 lecture 1
Ecc3601 lecture 1
makhfudzah
 
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse? Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
NETBAES
 
Light reflaction and refraction
Light reflaction and refractionLight reflaction and refraction
Light reflaction and refraction
Abhaya Gupta
 
Konstruksi Bangunan : Perancah (Scaffolding)
Konstruksi Bangunan : Perancah (Scaffolding)Konstruksi Bangunan : Perancah (Scaffolding)
Konstruksi Bangunan : Perancah (Scaffolding)
Dian Sari
 
Bosch '''project part-A for MBA student
Bosch '''project part-A for MBA student Bosch '''project part-A for MBA student
Bosch '''project part-A for MBA student
yathish Gowda
 

Viewers also liked (16)

George Waters
George WatersGeorge Waters
George Waters
 
Diari del 18 d'octubre de 2013
Diari del 18 d'octubre de 2013Diari del 18 d'octubre de 2013
Diari del 18 d'octubre de 2013
 
Guanajuato
GuanajuatoGuanajuato
Guanajuato
 
водоспади
водоспадиводоспади
водоспади
 
Order of Marechaussee
Order of MarechausseeOrder of Marechaussee
Order of Marechaussee
 
El nivel de iconicidad
El nivel de iconicidadEl nivel de iconicidad
El nivel de iconicidad
 
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
Soodakattilalaitoksen lisäveden orgaanisen aineen vähentäminen (in Finnish)
 
UiTforum 2013 - De draad oppikken
UiTforum 2013 - De draad oppikkenUiTforum 2013 - De draad oppikken
UiTforum 2013 - De draad oppikken
 
Presi dalla rete: rischi e opportunità
Presi dalla rete: rischi e opportunitàPresi dalla rete: rischi e opportunità
Presi dalla rete: rischi e opportunità
 
Literatura mediaval. alumno pcpi
Literatura mediaval. alumno pcpiLiteratura mediaval. alumno pcpi
Literatura mediaval. alumno pcpi
 
Malnutrition
MalnutritionMalnutrition
Malnutrition
 
Ecc3601 lecture 1
Ecc3601 lecture 1Ecc3601 lecture 1
Ecc3601 lecture 1
 
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse? Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
Crowd-Management, Werkzeug der zukünftigen ökonomischen Prozesse?
 
Light reflaction and refraction
Light reflaction and refractionLight reflaction and refraction
Light reflaction and refraction
 
Konstruksi Bangunan : Perancah (Scaffolding)
Konstruksi Bangunan : Perancah (Scaffolding)Konstruksi Bangunan : Perancah (Scaffolding)
Konstruksi Bangunan : Perancah (Scaffolding)
 
Bosch '''project part-A for MBA student
Bosch '''project part-A for MBA student Bosch '''project part-A for MBA student
Bosch '''project part-A for MBA student
 

Similar to Lecture6

JavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptxJavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptx
VivekBaghel30
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
nanjil1984
 
Js placement
Js placementJs placement
Js placement
Sireesh K
 
FSJavaScript.ppt
FSJavaScript.pptFSJavaScript.ppt
FSJavaScript.ppt
AbhishekKumar66407
 
Unit 2.4
Unit 2.4Unit 2.4
Basic JavaScript Tutorial
Basic JavaScript TutorialBasic JavaScript Tutorial
Basic JavaScript Tutorial
DHTMLExtreme
 
Java script writing javascript
Java script writing javascriptJava script writing javascript
Java script writing javascript
Jesus Obenita Jr.
 
Hello world
Hello worldHello world
Hello world
llynn83wou
 
Java script
Java scriptJava script
Java script
Ravinder Kamboj
 
การเข ยนโปรแกรมต ดต_อฐานข_อม_ล
การเข ยนโปรแกรมต ดต_อฐานข_อม_ลการเข ยนโปรแกรมต ดต_อฐานข_อม_ล
การเข ยนโปรแกรมต ดต_อฐานข_อม_ล
Bongza Naruk
 
FYBSC IT Web Programming Unit III Javascript
FYBSC IT Web Programming Unit III JavascriptFYBSC IT Web Programming Unit III Javascript
FYBSC IT Web Programming Unit III Javascript
Arti Parab Academics
 
JAVASCRIPT 1.pptx.pptx
JAVASCRIPT 1.pptx.pptxJAVASCRIPT 1.pptx.pptx
JAVASCRIPT 1.pptx.pptx
BeingPrime
 
Javascript
JavascriptJavascript
Javascript
Priyanka Pradhan
 
BEAAUTIFUL presentation of java
BEAAUTIFUL  presentation of javaBEAAUTIFUL  presentation of java
BEAAUTIFUL presentation of java
rana usman
 
jQuery
jQueryjQuery
Java Script (Module 1).pptx
Java Script (Module 1).pptxJava Script (Module 1).pptx
Java Script (Module 1).pptx
Shehrevar Davierwala
 
JavaScript - Getting Started.pptx
JavaScript - Getting Started.pptxJavaScript - Getting Started.pptx
JavaScript - Getting Started.pptx
JonnJorellPunto
 
Unit 2.4
Unit 2.4Unit 2.4
JS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTINGJS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTING
Arulkumar
 
JavaScript with Syntax & Implementation
JavaScript with Syntax & ImplementationJavaScript with Syntax & Implementation
JavaScript with Syntax & Implementation
Soumen Santra
 

Similar to Lecture6 (20)

JavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptxJavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptx
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
 
Js placement
Js placementJs placement
Js placement
 
FSJavaScript.ppt
FSJavaScript.pptFSJavaScript.ppt
FSJavaScript.ppt
 
Unit 2.4
Unit 2.4Unit 2.4
Unit 2.4
 
Basic JavaScript Tutorial
Basic JavaScript TutorialBasic JavaScript Tutorial
Basic JavaScript Tutorial
 
Java script writing javascript
Java script writing javascriptJava script writing javascript
Java script writing javascript
 
Hello world
Hello worldHello world
Hello world
 
Java script
Java scriptJava script
Java script
 
การเข ยนโปรแกรมต ดต_อฐานข_อม_ล
การเข ยนโปรแกรมต ดต_อฐานข_อม_ลการเข ยนโปรแกรมต ดต_อฐานข_อม_ล
การเข ยนโปรแกรมต ดต_อฐานข_อม_ล
 
FYBSC IT Web Programming Unit III Javascript
FYBSC IT Web Programming Unit III JavascriptFYBSC IT Web Programming Unit III Javascript
FYBSC IT Web Programming Unit III Javascript
 
JAVASCRIPT 1.pptx.pptx
JAVASCRIPT 1.pptx.pptxJAVASCRIPT 1.pptx.pptx
JAVASCRIPT 1.pptx.pptx
 
Javascript
JavascriptJavascript
Javascript
 
BEAAUTIFUL presentation of java
BEAAUTIFUL  presentation of javaBEAAUTIFUL  presentation of java
BEAAUTIFUL presentation of java
 
jQuery
jQueryjQuery
jQuery
 
Java Script (Module 1).pptx
Java Script (Module 1).pptxJava Script (Module 1).pptx
Java Script (Module 1).pptx
 
JavaScript - Getting Started.pptx
JavaScript - Getting Started.pptxJavaScript - Getting Started.pptx
JavaScript - Getting Started.pptx
 
Unit 2.4
Unit 2.4Unit 2.4
Unit 2.4
 
JS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTINGJS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTING
 
JavaScript with Syntax & Implementation
JavaScript with Syntax & ImplementationJavaScript with Syntax & Implementation
JavaScript with Syntax & Implementation
 

Recently uploaded

Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Precisely
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
HarisZaheer8
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
LucaBarbaro3
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
Alex Pruden
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
AstuteBusiness
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
Javier Junquera
 

Recently uploaded (20)

Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
 

Lecture6

  • 2. Learning Outcome At the end of this lesson, students should be able to: i) Insert JavaScripts in HTML documents ii) Declare JavaScript variables in HTML documents
  • 3. JavaScript Syntax • The HTML <script> tag is used to insert a JavaScript into an HTML page. The <script> tags tell the browser to expect a script in between them. <html> <body> <script type="text/javascript"> document.write("JavaScript is not Java"); </script> </body> This part that </html> writes/display the actual text 3
  • 4. Where to put your scripts? 1. 2. 3. 4. Scripts in <head> Scripts in <body> In both the body and the head section Using an External JavaScript 4
  • 5. Where to put your scripts? <head>. <html> <head> <script type="text/javascript"> function message() { alert("This alert box was called with the onload event"); } </script> </head> <body onload="message()"> </body> </html> 5
  • 6. Where to put your scripts? <body>. <html> <body> <script type="text/javascript"> document.write("JavaScript is not Java"); </script> </body> </html> 6
  • 7. Where to put your scripts? <head> and <body> • <html> <head> <script type="text/javascript"> function message() { alert("This alert box was called with the onload event"); } </script> </head> <body onload="message()"> <script type="text/javascript"> document.write("This message is written by JavaScript"); </script> </body> </html> 7
  • 8. Where to put your scripts? External javascript • <html> <head> <script type="text/javascript" src="xxx.js"></script> </head> <body> JavaScript external </body> file with a .js file </html> extension. 8
  • 9. 9 JAVASCRIPT VARIABLES Rules for variable names: • Variable names are case sensitive • They must begin with a letter or the underscore character • You can create a variable with the var statement: var strname = some value • You can also create a variable without the var statement: strname = some value • Assign a Value to a Variable var strname = "Hege" Or like this: strname = "Hege"
  • 10. <html> <body> <script type="text/javascript"> var firstname; firstname=“Toot"; document.write(firstname); document.write("<br />"); firstname=“Tweet"; document.write(firstname); </script> javascript variables firstname=“Toot"; variable value <p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p> </body> </html>