Sei sulla pagina 1di 45

JavaScript

Intro

JS Primitive Data

JS Complex Data

JSON

Action Plan
JavaScript and Java are completely different languages,
both in concept and design.

JavaScript was invented by Brendan Eich in 1995, and


became an ECMA standard in 1997.
ECMA-262 is the official name of the standard.
ECMAScript is the official name of the language.

JavaScript is the programming language of HTML and the


Web.

JavaScript to program the behavior of web pages

JavaScript Origin
JavaScript is sometimes also
is called HTML Dog
Year Name Description

1997 ECMAScript 1 First Edition.

1998 ECMAScript 2 Editorial changes only.

1999 ECMAScript 3 Added Regular Expressions.


Added try/catch.

ECMAScript 4 Was never released.

2009 ECMAScript 5 Added "strict mode".


Added JSON support.

2011 ECMAScript 5.1 Editorial changes.

2015 ECMAScript 6 Added classes and modules.

2016 ECMAScript 7 Added exponential operator (**).


Added Array.prototype.includes.

JavaScript Versions
JavaScript

JSON

AJAX

VBScript

Tehnologii de Prelucrare a
datelor direct n browser
abstract arguments await* boolean

break byte case catch

char class* const continue

debugger default delete do

double else enum* eval

export* extends* false final

finally float for function

goto if implements import*

in instanceof int interface

let* long native new

null package private protected

public return short static

super* switch synchronized this

throw throws transient true

try typeof var void

volatile while with yield

JavaScript reserved words


The following reserved words has been removed from the
ECMAScript 5/6 standard:

abstract boolean byte char

double final float goto

int long native short

synchronized throws transient volatile

Removed Reserved Words


One of many JavaScript HTML methods
is getElementById().

This example uses the method to "find" an HTML


element (with id="demo") and changes the element
content (innerHTML) to "Hello JavaScript":

Example
document.getElementById("demo").innerHTML = "Hello
JavaScript";

JavaScript Can Change HTML


Content
JavaScript Can Change HTML Attributes
document.getElementById('myImage').src='pic_bulbon.gif';

JavaScript Can Change HTML Styles (CSS)


document.getElementById("demo").style.fontSize = "25px";

JavaScript Can Hide HTML Elements


document.getElementById("demo").style.display = "none";

JavaScript Can Show HTML Elements


document.getElementById("demo").style.display = "block";

What JavaScript can do more


JavaScript in <head>
<head>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";}
</script>
</head>

JavaScript in <body>
<body>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";}
</script>
</body>

External JavaScript
<script src="myScript.js"></script>

JavaScript Where To write IT


Writing into an HTML element, using innerHTML.
document.getElementById("demo").innerHTML = 11;

Writing into the HTML output using document.write().


document.write(11);

Writing into an alert box, using window.alert().


window.alert(11);

Writing into the browser console, using console.log().


console.log(11);

JavaScript Display Possibilities


A computer program is a list of "instructions" to be "executed" by
the computer.
In a programming language, these program instructions are
called statements.
JavaScript is a programming language.
JavaScript statements are separated by semicolons.
JavaScript statements are composed of: Values, Operators,
Expressions, Keywords, and Comments.
The JavaScript syntax defines two types of values: Fixed values and
variable values.
Fixed values are called literals. Variable values are called variables.
The most important rules for writing fixed values are: Numbers are
written with or without decimals and Strings are text, written within
double or single quotes.
In a programming language, variables are used to store data values.
JavaScript uses the var keyword to declare variables.
An equal sign is used to assign values to variables.

JavaScript Syntax
Keyword Description
break Terminates a switch or a loop
continue Jumps out of a loop and starts at the top
debugger Stops the execution of JavaScript, and calls (if available) the debugging
function
do ... while Executes a block of statements, and repeats the block, while a condition is
true
for Marks a block of statements to be executed, as long as a condition is true

function Declares a function


if ... else Marks a block of statements to be executed, depending on a condition

return Exits a function


switch Marks a block of statements to be executed, depending on different cases

try ... catch Implements error handling to a block of statements


var Declares a variable

JavaScript Keywords
JavaScript comments can be used to explain JavaScript code, and to
make it more readable.
// Change heading: or
/*
The code below will change
the heading with id = "myH"
and the paragraph with id = "myP"
in my web page:
*/

JavaScript comments can also be used to prevent execution, when


testing alternative code.
//document.getElementById("myH").innerHTML = "My First Page";
/*
document.getElementById("myH").innerHTML = "My First Page";
document.getElementById("myP").innerHTML = "My first
paragraph.";
*/

JavaScript Comments
JavaScript variables are containers for storing data values.
All JavaScript variables must be identified with unique
names.
These unique names are called identifiers.
Identifiers can be short names (like x and y) or more descriptive
names (age, sum, totalVolume).
The general rules for constructing names for variables (unique
identifiers) are:
Names can contain letters, digits, underscores, and dollar signs.
Names must begin with a letter
Names can also begin with $ and _ (but we will not use it in this
tutorial)
Names are case sensitive (y and Y are different variables)
Reserved words (like JavaScript keywords) cannot be used as
names
To assign a value to the variable, use the equal sign

JavaScript Variables
Operator Description

+ Addition

- Subtraction

* Multiplication

/ Division

% Modulus

++ Increment

-- Decrement

Operator Example Same As

= x=y x=y

+= x += y x=x+y

-= x -= y x=x-y

*= x *= y x=x*y

/= x /= y x=x/y

%= x %= y x=x%y

JavaScript Operators
Primitive Data
A primitive data value is a single simple data value with no additional
properties and methods.
The typeof operator can return one of these primitive types:
string
number - JavaScript has only one type of numbers
boolean
null
Undefined - var person;

Complex Data
The typeof operator can return one of two complex types:
function
function myFunction();
object
var person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"};

JavaScript Data Types


There are 5 data type:
string
number
boolean
object
function
There are 3 types of objects:
Object
Date
Array
And 2 data types that cannot contain values:
null
undefined

JavaScript Type Conversion


typeof "John" // Returns "string"
typeof 3.14 // Returns "number"
typeof NaN // Returns "number"
typeof false // Returns "boolean"
typeof [1,2,3,4] // Returns "object"
typeof {name:'John', age:34} // Returns "object"
typeof new Date() // Returns "object"
typeof function () {} // Returns "function"
typeof myCar // Returns "undefined" *
typeof null // Returns "object"

The typeof Operator


A JavaScript function is a block of code designed to perform a particular
task.
A JavaScript function is executed when "something" invokes it (calls it).
JavaScript Function Syntax
A JavaScript function is defined with the function keyword, followed by
a name, followed by parentheses ().
Function names can contain letters, digits, underscores, and dollar signs (same
rules as variables).
The parentheses may include parameter names separated by commas:
(parameter1, parameter2, ...)
The code to be executed, by the function, is placed inside curly brackets: {}
function name(parameter1, parameter2, parameter3) {
code to be executed
}
When JavaScript reaches a return statement, the function will stop
executing.
If the function was invoked from a statement, JavaScript will "return" to
execute the code after the invoking statement.
Functions often compute a return value. The return value is "returned"
back to the "caller.

JavaScript Functions
In JavaScript, objects and functions are also variables.
In JavaScript, scope is the set of variables, objects, and
functions you have access to.
JavaScript has function scope: The scope changes inside
functions.
A variable declared outside a function,becomes GLOBAL.
A global variable has global scope: All scripts and
functions on a web page can access it.

Do NOT create global variables unless you intend to.


In "Strict Mode" automatically global variables will fail.

JavaScript Scope
HTML events are "things" that happen to HTML
elements.
When JavaScript is used in HTML pages, JavaScript
can "react" on these events.
Event Description

onchange An HTML element has been changed

onclick The user clicks an HTML element

onmouseover The user moves the mouse over an HTML element

onmouseout The user moves the mouse away from an HTML element

onkeydown The user pushes a keyboard key

onload The browser has finished loading the page

JavaScript Events
Property Description

closed Returns a Boolean value indicating whether a window has been closed or not

defaultStatus Sets or returns the default text in the statusbar of a window

document Returns the Document object for the window (See Document object)

frameElement Returns the <iframe> element in which the current window is inserted

frames Returns all <iframe> elements in the current window

history Returns the History object for the window (See History object)

innerHeight Returns the inner height of a window's content area

innerWidth Returns the inner width of a window's content area

length Returns the number of <iframe> elements in the current window

Window Object Properties in JS I


localStorage Returns a reference to the local storage object used to store data. Stores data with no expiration date

location Returns the Location object for the window (See Location object)
name Sets or returns the name of a window
navigator Returns the Navigator object for the window (See Navigator object)
opener Returns a reference to the window that created the window
outerHeight Returns the outer height of a window, including toolbars/scrollbars
outerWidth Returns the outer width of a window, including toolbars/scrollbars
pageXOffset Returns the pixels the current document has been scrolled (horizontally) from the upper left corner of the window

pageYOffset Returns the pixels the current document has been scrolled (vertically) from the upper left corner of the window

parent Returns the parent window of the current window


screen Returns the Screen object for the window (See Screen object)
screenLeft Returns the horizontal coordinate of the window relative to the screen
screenTop Returns the vertical coordinate of the window relative to the screen
screenX Returns the horizontal coordinate of the window relative to the screen
screenY Returns the vertical coordinate of the window relative to the screen
sessionStorage Returns a reference to the local storage object used to store data. Stores data for one session (lost when the browser
tab is closed)
scrollX An alias of pageXOffset
scrollY An alias of pageYOffset
self Returns the current window
status Sets or returns the text in the statusbar of a window
top Returns the topmost browser window

Window Object Properties in JS II


Method Description
alert() Displays an alert box with a message and an OK button
atob() Decodes a base-64 encoded string
blur() Removes focus from the current window
btoa() Encodes a string in base-64
clearInterval() Clears a timer set with setInterval()
clearTimeout() Clears a timer set with setTimeout()
close() Closes the current window
confirm() Displays a dialog box with a message and an OK and a Cancel button
focus() Sets focus to the current window
getComputedStyle() Gets the current computed CSS styles applied to an element

getSelection() Returns a Selection object representing the range of text selected by the user

matchMedia() Returns a MediaQueryList object representing the specified CSS media query string

moveBy() Moves a window relative to its current position


moveTo() Moves a window to the specified position
open() Opens a new browser window
print() Prints the content of the current window
prompt() Displays a dialog box that prompts the visitor for input
resizeBy() Resizes the window by the specified pixels
resizeTo() Resizes the window to the specified width and height
scroll() Deprecated. This method has been replaced by the scrollTo() method.
scrollBy() Scrolls the document by the specified number of pixels
scrollTo() Scrolls the document to the specified coordinates
setInterval() Calls a function or evaluates an expression at specified intervals (in milliseconds)

setTimeout() Calls a function or evaluates an expression after a specified number of milliseconds

stop() Stops the window from loading

Window Object Properties in JS III


JavaScript strings are used for storing and manipulating text
Strings are immutable this mean that can be simple
variabile and object in the same time;

Code Outputs
\' single quote
\" double quote
\\ backslash

Code Outputs
\b Backspace
\r Carriage Return
\f Form Feed
\t Horizontal Tabulator
\v Vertical Tabulator

JavaScript Strings
length - returns the length of a string
indexOf() - method returns the index of (the position of) the first occurrence of a
specified text in a string
lastIndexOf() method returns the index of the last occurrence of a specified text
in a string
search() method searches a string for a specified value and returns the position of
the match
slice() extracts a part of a string and returns the extracted part in a new string
substring() is similar to slice()
substr() is similar to slice()
replace() method replaces a specified value with another value in a string
toUpperCase() and toLowerCase() - Converting to Upper and Lower Case
concat() joins two or more string
The charAt() method returns the character at a specified index (position) in a
string
The charCodeAt() method returns the unicode of the character at a specified
index in a string
A string can be converted to an array with the split() method

JavaScript String Methods I


Are used to process strings

String Length - txt.length;


Finding a String in a String
str.indexOf("locate");
str.search("locate");
The slice() Method
str.slice(7, 13);
The substring() Method
str.substring(7, 13);
Replacing String Content
str.replace("Microsoft", "W3Schools");
Converting to Upper and Lower Case
text1.toUpperCase()
The concat() Method
text1.concat(" ", text2);
The charAt() Method
str.charAt(0);

JavaScript String Methods II


The toString() Method
The toExponential() Method
The toFixed() Method
The toPrecision() Method
The valueOf() Method
The Number() method
The parseInt() method
The parseFloat() method
Property Description
MAX_VALUE Returns the largest number possible in JavaScript
MIN_VALUE Returns the smallest number possible in JavaScript
NEGATIVE_INFINITY Represents negative infinity (returned on overflow)
NaN Represents a "Not-a-Number" value
POSITIVE_INFINITY Represents infinity (returned on overflow)

Number Properties
Method Description

abs(x) Returns the absolute value of x

acos(x) Returns the arccosine of x, in radians

asin(x) Returns the arcsine of x, in radians

atan(x) Returns the arctangent of x as a numeric value between -PI/2 and PI/2 radians

atan2(y, x) Returns the arctangent of the quotient of its arguments

ceil(x) Returns the value of x rounded up to its nearest integer

cos(x) Returns the cosine of x (x is in radians)


x
exp(x) Returns the value of E

floor(x) Returns the value of x rounded down to its nearest integer

log(x) Returns the natural logarithm (base E) of x

max(x, y, z, ..., n) Returns the number with the highest value

min(x, y, z, ..., n) Returns the number with the lowest value

pow(x, y) Returns the value of x to the power of y

random() Returns a random number between 0 and 1

round(x) Returns the value of x rounded to its nearest integer

sin(x) Returns the sine of x (x is in radians)

sqrt(x) Returns the square root of x

tan(x) Returns the tangent of an angle

JS Math
Type Example

ISO Date "2015-03-25" (The International Standard)

Short Date "03/25/2015"

Long Date "Mar 25 2015" or "25 Mar 2015"

Full Date "Wednesday March 25 2015"

Method Description

setDate() Set the day as a number (1-31)

setFullYear() Set the year (optionally month and day)

setHours() Set the hour (0-23)

setMilliseconds() Set the milliseconds (0-999)

setMinutes() Set the minutes (0-59)

setMonth() Set the month (0-11)

setSeconds() Set the seconds (0-59)

setTime() Set the time (milliseconds since January 1, 1970)

JS Date
An array is a special variable, which can hold more than one
value at a time.
If you have a list of items (a list of car names, for example),
storing the cars in single variables could look like this:
var car1 = "Saab";
var car2 = "Volvo";
var car3 = "BMW";
However, what if you want to loop through the cars and find a
specific one? And what if you had not 3 cars, but 300?
The solution is an array!
An array can hold many values under a single name, and you
can access the values by referring to an index number.
Syntax:
var array_name = [item1, item2, ...];
Example
var cars = ["Saab", "Volvo", "BMW"];

JS Arrays
Array Example: var fruits = ["Banana", "Orange","Apple", "Mango"];

toString()
Example:
document.getElementById("demo").innerHTML = fruits.toString();
Result : Banana, Orange, Apple, Mango
join()
Example:
document.getElementById("demo").innerHTML = fruits.join(" * ");
Result : Banana * Orange * Apple * Mango
Popping()
Example:
fruits.pop(); // Removes the last element ("Mango") from fruits
Result : Banana, Orange, Apple
Pushing()
Example:
fruits.push("Kiwi"); // Adds a new element ("Kiwi") to fruits
Result : Banana, Orange, Apple, Mango, Kiwi
And others like shift, unshift, delete, splice, concat, slice, max, min, sorting

JavaScript Array Methods


Use if to specify a block of code to be executed, if a
specified condition is true

Use else to specify a block of code to be executed, if the


same condition is false

Use else if to specify a new condition to test, if the first


condition is false

Use switch to specify many alternative blocks of code to be


executed

Conditional Statements
for - loops through a block of code a number of times
for (i = 0; i < cars.length; i++) { instructions;}
for/in - loops through the properties of an object
for (x in person) { instructions;}
while - loops through a block of code while a specified
condition is true
while (i < 10) { instructions;}
do/while - also loops through a block of code while a
specified condition is true
do { instructions;} while (i < 10);

JavaScript For Loop


A regular expression is a sequence of characters that
forms a search pattern.

When you search for data in a text, you can use this
search pattern to describe what you are searching for.

A regular expression can be a single character, or a more


complicated pattern.

Regular expressions can be used to perform all types


of text search and text replace operations.

Regular Expression
Brackets are used to find a range of characters:
Expression Description

[abc] Find any of the characters between the brackets


[0-9] Find any of the digits between the brackets
(x|y) Find any of the alternatives separated with |

Metacharacters are characters with a special meaning:


Metacharacter Description
\d Find a digit
\s Find a whitespace character
\b Find a match at the beginning or at the end of a word
\uxxxx Find the Unicode character specified by the hexadecimal number xxxx

Quantifiers define quantities:


Quantifier Description
n+ Matches any string that contains at least one n
n* Matches any string that contains zero or more occurrences of n
n? Matches any string that contains zero or one occurrences of n

Regular Expression Patterns


The try statement lets you test a block of code for errors.

The catch statement lets you handle the error.

The throw statement lets you create custom errors.

The finally statement lets you execute code, after try and catch,
regardless of the result.

Example
try {
Block of code to try
}
catch(err) {
Block of code to handle errors
}
finally {
Block of code to be executed regardless of the try / catch result
}

JS Errors
Code Debugging
Programming code might contain syntax errors, or logical errors.
Many of these errors are difficult to diagnose.
Often, when programming code contains errors, nothing will happen. There are no
error messages, and you will get no indications where to search for errors.
Searching for (and fixing) errors in programming code is called code debugging.

JavaScript Debuggers
Debugging is not easy. But fortunately, all modern browsers have a built-in
JavaScript debugger.
Built-in debuggers can be turned on and off, forcing errors to be reported to the user.
With a debugger, you can also set breakpoints (places where code execution can be
stopped), and examine variables while the code is executing.
Normally, otherwise follow the steps at the bottom of this page, you activate
debugging in your browser with the F12 key, and select "Console" in the debugger
menu.

Methods of debugging
The console.log() Method
debugger;

JavaScript Debugging
JSON stands for JavaScript Object Notation

JSON is lightweight data interchange format

JSON is language independent *

JSON is "self-describing" and easy to understand

JSON is a format for storing and transporting data.

JSON is often used when data is sent from a server to a


web page.

What is JS JSON [ I ]
JSON Syntax Rules
Data is in name/value pairs
Data is separated by commas
Curly braces hold objects
Square brackets hold arrays

Converting a JSON Text to a JavaScript Object


var text = '{"employees":[' +
'{"firstName":"John","lastName":"Doe" },' +
'{"firstName":"Anna","lastName":"Smith" },' +
'{"firstName":"Peter","lastName":"Jones" }]}';

var obj = JSON.parse(text);

What is JS JSON JS JSON [ II ]


<script>
var obj, dbParam, xmlhttp;
obj = { "table":"customers", "limit":10 };
dbParam = JSON.stringify(obj);
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML =
this.responseText;
}
};
xmlhttp.open("GET", "json_demo_db.php?x=" + dbParam, true);
xmlhttp.send();

</script>

Bonus: JSON with PHP


<script>
var result = window.confirm("Questions?") ;
if (result== true) {
txt = Congratulations! You end the course! ";
moveForwardAction(txt);
} else {
txt = Sorry! You didnt passed the course! ";
restartJSCourseAction(txt);
}
</script>

THE END

Potrebbero piacerti anche