Javascript:
*Javascript improves the user experience of the web page by converting static
page into interactive page.
*Javascript add behavior to the web page.
HTML/HTML5
*HTML stands for hyper text markup language.
*HTML is the standard language for creating web pages.
*HTML describes the structure of a web page.
Ex:skeleton is like html
CSS is like Skin which will beautfy the web page.
brain is like Javascript because it will implements the logic.
CSS/CSS3
*css stands for cascading style sheet.
*css describes how html elements displayed on the screen,with css
we can control the font,size and color of the text.
*What is Java Script?
Java Script is one of the most popular and widely used programming language.
It is growing faster than any other programming language.
big companies like netflix,paypal and walmart build their entire application using javascript.
The average salary of javascript developer 72000$ to 75000$
It is great oppurtunity to learn js because you can work as front end developer,back end developer.
full stack developer:full stack developer means who knows both front end and back end.
*What can we do with js?
for a longer period of time js was only used in browsers to build interactive web pages.
some developers use to prefer js as toy language.
huge community support and investment is provided to js by large companies like facebook and google.
javascript can be used to develop
1)web/mobile apps
2)real time networking apps
3)command line tools
4)Games
Why Study JavaScript?
JavaScript is one of the 3 languages all web developers must learn:
1. HTML to define the content of web pages
2. CSS to specify the layout of web pages
3. JavaScript to program the behavior of web pages
The Original JavaScript ES1 ES2 ES3 (1997-1999)
The First Main Revision ES5 (2009)
The Second Revision ES6 (2015)
The Yearly Additions (2016, 2017, 2018).
javascript is a text-based programming language used on both client side and server side
that allows user to make web page interactive.
Naming variables:
*The first character should be a letter or an (_)underscore or an $,but we can't use the
number.
goto google
type as node js
download it
goto to terminal in vs code.
view---->terminal
node -v
Example:
let $myVariable="Hello world";
console.log($myVariable);
let myName="Asha";
console.log(myName);
console.log(typeof(myName));
let myAge=5;
console.log(myAge);
console.log(typeof(myAge));