Oreilly - JavaScript from Beginner to Expert - 9781788838139
Oreilly - JavaScript from Beginner to Expert
by Arkadiusz Włodarczyk | Publisher: Packt Publishing | Release Date: October 2017 | ISBN: 9781788838139


Become a JavaScript expert in 30 days, even if you are a beginner. Become a front-end developer of websites in JSAbout This VideoYou will understand all concepts and create your own applications! You can become a front-end developer.JavaScript is a much-demanded language by employers.In DetailThe course is designed for people who don't have any knowledge about programming or want to truly understand JavaScript. It doesn't matter if you have never written any programs or you have no idea about programming... After my course, all this will change. You will bust the myth that programming is a difficult thing only for the few! JavaScript will bring life to your website. Learn JavaScript in order to improve the user experience on your website, which will result in more visitors and sales, because happy visitors = a better reputation for your website. JavaScript gives your website additional functionalities that can be executed on the user's computer without re-connecting to the server. This allows you to do things that you cannot do with only HTML. Because of this, the user interface becomes friendlier and more inter-active JavaScript is a programming language used for creating dynamic action on your website. If you want to remove/change/add content to your website dynamically, you must know JavaScript. After this course, you will know JavaScript perfectly. This is the most organized course about JavaScript from Beginner to Expert on the whole Internet. I will take you step by step from theory to practical examples, like image sliders and animation.
  1. Chapter 1 : Introduction
    • What is JavaScript and where can you use it? 00:05:51
    • Who Am I? 00:00:51
    • What will you know after this course? 00:01:41
    • Assumptions in this course 00:02:56
  2. Chapter 2 : Editor
    • Downloading and installing editor 00:05:37
    • Creating the project / structure of project 00:06:05
    • Useful shortcuts that will save you tons of time 00:12:13
  3. Chapter 3 : Basics
    • Properly embedding JS scripts on your website reducing website loading speed 00:13:41
    • Basics: How is your script executed? Whitespaces/semicolons etc. 00:08:27
    • Comments 00:04:19
    • Variables 00:17:20
  4. Chapter 4 : Operators
    • Arithmetic operators 00:13:06
    • Relational operators 00:05:58
    • Logical operators 00:07:26
  5. Chapter 5 : Conditions
    • Conditional Statements 00:10:58
    • Conditional operator ?: 00:04:45
    • Switch 00:05:25
  6. Chapter 6 : Functions
    • Functions basics 00:17:31
    • Scope of Variables within Functions and Outside of Functions 00:08:51
    • Function Expressions | Anonymous function 00:12:44
  7. Chapter 7 : Objects
    • What are and how to create objects? 00:13:36
    • Using an Object Constructor Function (class) 00:10:57
    • Adding Properties to Objects using Prototype 00:05:39
  8. Chapter 8 : Arrays
    • Arrays 00:14:04
    • Useful Array Methods 00:17:02
  9. Chapter 9 : Loops
    • What is a loop? while and do while loop 00:16:03
    • loop for 00:03:29
    • instruction break and continue 00:06:15
    • loop for/in - used for processing objects 00:07:45
    • EXERCISE: Argument Object in function (unlimited number of arguments) 00:05:49
  10. Chapter 10 : DOM (Document Object Model)
    • What is DOM / how to obtain content of your website 00:18:35
    • querySelector - fast and easy accessing of elements on the website 00:06:05
    • Changing dynamically styles of elements using JS 00:04:11
    • Adding and removing elements from document 00:10:30
    • EXERCISE: Loop inside another Loop - printing out multiplication table 00:09:56
  11. Chapter 11 : Events
    • Basics of Events 00:09:08
    • 'this' - accessing the element that invoked the event function 00:06:10
    • onload event - VERY IMPORTANT LESSON DO NOT SKIP IT 00:04:01
    • Adding and removing event listener 00:16:27
    • Event object as an automatically passed argument to function 00:18:03
    • Propagating (multiplication of events) 00:05:36
    • Preventing browser default action for example blocking context menu 00:06:06
    • EXERCISE: onscroll Event - 'jump to the top of website' button 00:07:59
    • Mouse events - dragging the image 00:12:30
    • setTimeout and setInterval - Timing Events 00:16:33
    • EXERCISE: upgrading the code from the last lesson to object oriented way 00:14:29
  12. Chapter 12 : Validating Forms using Events
    • How to validate forms? Validating text type input using form related events 00:19:21
    • Stopping form from submitting when any data in a form is not correct 00:03:38
    • Checkbox 00:06:38
    • radio input on terms and condition example 00:06:25
    • select (combo box) 00:07:28
  13. Chapter 13 : String
    • Manipulating a string using String's methods 00:15:12
    • Breaking string in many lines for readability and special characters 00:05:07
  14. Chapter 14 : RegExp
    • Regular expressions 00:22:14
    • Regexp match vs exec function 00:04:56
    • EXERCISE: RegExp on practical example - testing password in input 00:09:28
  15. Chapter 15 : Date
    • Time manipulation with Date object 00:19:31
    • Exercise: A Clock on your website 00:14:32
  16. Chapter 16 : Cookies
    • What are cookies? 00:15:12
    • Function for creating cookies 00:04:55
    • Function for removing cookies 00:01:38
    • Platform as a Service Function for finding value of cookie by keyname(PaaS) 00:05:58
    • Properly interpreting special characters - EncodeURIComponent method 00:01:49
  17. Chapter 17 : Dialog Window
    • Confirm and prompt box 00:05:59
  18. Chapter 18 : Math
    • Rounding numbers and the most useful Math methods 00:07:16
    • Randomness 00:04:03
    • EXERCISE: Random quotes 00:03:42
  19. Chapter 19 : Location
    • How to get and change location (URL) of your user? 00:03:08
  20. Chapter 20 : Images
    • Loading Images only when needed - save your bandwidth and improve user experience 00:09:30
  21. Chapter 21 : Slideshow
    • Slideshow 00:11:11
    • Slideshow animated in JS using CSS property transition 00:04:36
    • Animation using setInterval that is supported in every web browser 00:04:33
    • Image gallery with thumbnails 00:14:11
    • Tooltip - how to create a hint box? 00:16:21
  22. Chapter 22 : Closures
    • What are closures on practical example? 00:14:50
  23. Chapter 23 : Advanced - Optional Topics
    • Bitwise operators 00:17:17
  24. Chapter 24 : BONUS 1: Debugging
    • Firebug 00:03:29
    • Debugging with console commands 00:04:07
    • Great online tools for testing and sharing your code 00:04:35
    • strict mode 00:02:06
  25. Chapter 25 : BONUS 2: Best practises
    • Code performance 00:03:51
    • Keeping one .js file 00:02:30
    • Compressing JS files 00:03:50
    • 7 most common mistakes you should avoid 00:07:27
    • Changing IDE coloristics - keep your eyes healthy 00:03:06
  26. Chapter 26 : Summary
    • What after this course? 00:08:07
  27. Oreilly - JavaScript from Beginner to Expert


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss