4th Quarter Modules Flashcards
Is a light-weight object-oriented programming language which is
used by several websites for scripting the webpages.
JavaScript (js)
It is an interpreted, full-fledged
programming language that enables dynamic interactivity on websites when applied to
an HTML document.
JavaScript (js)
It was introduced in the year 1995 for adding programs to the
webpages in the Netscape Navigator browser.
JavaScript (js)
With __________, users can build modern web
applications to interact directly without reloading the page every time.
JavaScript
The name
was suggested and provided in the times when ____ was gaining popularity in the
market.
Java
Although, JavaScript has no ____________ with Java programming language.
connectivity
All popular web browsers support __________ as they provide built-in execution
environments.
JavaScript
__________ follows the syntax and structure of the C programming language.
Thus, it is a structured programming language.
JavaScript
is a weakly typed language, where certain types are implicitly cast
(depending on the operation).
JavaScript
is an object-oriented programming language that uses prototypes
rather than using classes for inheritance.
JavaScript
- It is a light-weighted and interpreted language.
- It is a case-sensitive language.
features of JavaScript
- is supportable in several operating systems including, Windows,
macOS, etc. - It provides good control to the users over the web browsers.
features of JavaScript
He realized that the web needed to
become more dynamic.
Marc Andreessen
In 19__, Mosaic, the first popular web browser, came into existence.
1993
In the year
19__, Netscape was founded by Marc Andreessen.
1994
Who founded Netscape?
Marc Andreessen
Thus, a ‘____ language’ was believed to be provided to HTML to
make web designing easy for designers and part-time programmers.
glue language
Consequently, in
19__, the company recruited _______ ____ intending to implement and embed Scheme
programming language to the browser.
1995 & Brendan Eich
But, before Brendan could start, the company
merged with ___ ____________ for adding Java into its Navigator so that it could
compete with Microsoft over the web technologies and platforms.
Sun Microsystems
Further, _________ decided to give a similar
name to the scripting language as Java’s.
Netscape
Finally, in May 1995, ____ __________ coined the first code of Javascript named ‘Mocha’.
Marc Andreessen
The marketing team replaced the name with ‘LiveScript’. But, due to
trademark reasons and certain other reasons, in December 1995, the language was
finally renamed to ‘___________’. From then, ___________ came into existence.
JavaScript
- Client-side validation,
- Dynamic drop-down menus,
- Displaying date and time,
- Displaying pop-up windows and dialog boxes (like an alert dialog box, confirm
dialog box and prompt dialog box), - Displaying clocks etc.
Application of JavaScript
3 JavaScript Index
- JavaScript Introduction
- JavaScript Example
- External JavaScript
9 JavaScript Basics
- JavaScript Comment
- JavaScript Variable
- JavaScript Global Variable
- JavaScript Data Types
- JavaScript Operators
- JavaScript If Statement
- JavaScript Switch
- JavaScript Loop
- JavaScript Function
3 Places to put JavaScript code
- Between the body tag of html
- Between the head tag of html
- In .js file (external javaScript)
JavaScript Example :
alert("Hello Javatpoint");
code between the body tag
JavaScript Example :
In this example, we are creating a function msg(). To create function in JavaScript, you
need to write function with function_name as given below.
code between the head tag