O slideshow foi denunciado.
Seu SlideShare está sendo baixado. ×

JavaScript Jump Start 20220214

Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Carregando em…3
×

Confira estes a seguir

1 de 11 Anúncio

JavaScript Jump Start 20220214

Baixar para ler offline

This is the presentation I was using when delivering the JavaScript Jump Start meetup on February 14th, 2022. More information about that meetup can be found at https://www.meetup.com/lifemichael/events/278743661/ You can find the video at https://youtu.be/F1e-KHTEKzo

This is the presentation I was using when delivering the JavaScript Jump Start meetup on February 14th, 2022. More information about that meetup can be found at https://www.meetup.com/lifemichael/events/278743661/ You can find the video at https://youtu.be/F1e-KHTEKzo

Anúncio
Anúncio

Mais Conteúdo rRelacionado

Diapositivos para si (20)

Semelhante a JavaScript Jump Start 20220214 (20)

Anúncio

Mais de Haim Michael (20)

Mais recentes (20)

Anúncio

JavaScript Jump Start 20220214

  1. 1. JavaScript Jump Start Haim Michael February 14th , 2022 All logos, trade marks and brand names used in this presentation belong to the respective owners.
  2. 2. Table of Content ● Introduction to JavaScript ● Development Tools ● Object Oriented Programming ● Functional Programming ● JavaScript Libraries ● Learning Resources ● Questions & Answers
  3. 3. Introduction to JavaScript ● JavaScript is a scripting language running on the web browser or on the server. It was originally developed by Netscape and became available in 1995. ● ECMA Script, defined by ECMA-262, is the standard JavaScript language. ECMA Script defines the very basic parts of the language
  4. 4. Introduction to JavaScript ● We can embed the code we write in JavaScript into the HTML page using the <script> element. <script> function do_something() { alert(”Good Morning!”); } </script>
  5. 5. Introduction to JavaScript ● We can alternatively have our code in a separated file linked with our HTML page. <script src=”mycode.js”></script>
  6. 6. Development Tools ● We can use a simple text editor. We can alternatively use an IDE.
  7. 7. Object Oriented Programming ● Every object is a collection of properties (key value pairs). var ob = new Object(); ob.name = "david"; ob.id = 132123; ob.printDetails = function(){ document.write("id="+this.id+" name="+this.name); }; ob.printDetails(); var other = {name:"david",id:123123);
  8. 8. Functional Programming ● JavaScript allows us to assign functions into variables. ● JavaScript allows us to pass the functions as arguments. ● JavaScript allows us to define anonymous functions and supports closure. var f = function(){ //do something... }
  9. 9. JavaScript Libraries ● The true power of JavaScript is the huge number of available JavaScript libraries we can use in our code.
  10. 10. Learning Resources ● Mozilla Developer Network https://developer.mozilla.org/en-US/ ● Facebook JavaScript Developers Group https://www.facebook.com/groups/407961892610345/
  11. 11. Questions & Answers . Thanks for your time! Haim.

×