Object-oriented Programming in Javascript | OOP Tutorial for Beginners

Sdílet
Vložit
  • čas přidán 4. 08. 2024
  • Learn object-oriented programming in Javascript from this OOP Tutorial for Beginners.
    Upgrade your Clever Techie learning experience:
    / clevertechie
    UPDATE! (9/13/19) New features and improvements for Clever Techie Patreons:
    1. Download full source code with detailed comments - easy to learn and understand code
    2. Weekly source code file updates by Clever Techie - every time I learn new things about a topic I will add it to the source file and let you know about the update - keep up with the latest coding technologies
    3. Library of custom Clever Techie functions with descriptive, easy to understand comments - skyrocket coding productivity, code more efficiently by using Clever library of custom re-usable functions
    4. Syntax code summary - memorize and review previously learned code faster
    4. Organized file structure - access all Clever Techie lessons, source code, graphics, diagrams and cheat sheet from a single workspace - no more searching around for previously covered material and source code - save enormous amount of time and effort
    5. Outline of topics the source file covers - fast review of all previously learned coding lessons
    6. Access to all full HD 1080p videos with no ads
    7. Console input examples - interactive examples that make it easier to understand and learn coding
    8. Access to updated PHP Programming Book by Clever Techie
    9. Early access to Clever Techie videos
    Subscribe to Clever Techie patreon:
    / clevertechie
    `````````````````````````````````````````````````````````````````````````````````````````````
    Learn Javascript object-oriented programming - 4 different ways of creating objects in Javascript. What is an object? How do we create objects in Javascript?
    `````````````````````````````````````````````````````````````````````````````````````````````
    Hey guys, I'm now using Patreon to share improved and updated video content and source files. For a small fee you can access all the downloadable files from this lesson (source code, icons & graphics, cheat sheets, OneNote notes) and everything else included in the video from the Patreon page. Additionally, you will get access to ALL Clever Techie videos in HD format with no ads. Thank you so much for supporting Clever Techie :)
    Download this video's files here:
    / 29576367
    ( You also get access to ALL source code and any downloadable content of ALL Clever Techie videos, as well as access to ALL videos in HD 1080p quality format with all video ads removed! )
    ``````````````````````````````````````````````````````````````````````````````````````````````
    ( Website ) clevertechie.com - PHP, JavaScript, Wordpress, CSS, and HTML tutorials in video and text format with cool looking graphics and diagrams.
    ( CZcams Channel ) / clevertechietube
    ( Google Plus ) goo.gl/J71p6f - clever techie video tutorials.
    ( Facebook ) / clevertechie
    ( Twitter ) / theclevertechie
  • Jak na to + styl

Komentáře • 43

  • @Rafael-jq4th
    @Rafael-jq4th Před 4 lety +10

    Your voice is so soft. I can understand everything.

  • @Bayo106
    @Bayo106 Před 4 lety +2

    You're an incredible teacher. I want to be very good at OOP and this is so helpful. Thanks

  • @m.a6141
    @m.a6141 Před 2 lety

    for ppl that are not english speaker from birth, its very easy to understand you. everyone else speaking very fast on there videos. keep with the good work

  • @aaronpaterson7582
    @aaronpaterson7582 Před 3 lety +4

    After 5 minutes in. I realized this guy has the teacher to student spirit. Very good clear explanations and time to cover the specifics.

  • @tonytony-fc6gq
    @tonytony-fc6gq Před 4 lety

    THANK YOU VERY MUCH !!!! easy to understand subbed STRAIGHT AWAY

  • @user-vw9ps4xm7b
    @user-vw9ps4xm7b Před 4 lety +1

    You are a true talent!

  • @ivantorres6577
    @ivantorres6577 Před 3 lety

    This helped a ton, way to explain this well!

  • @911madza
    @911madza Před 4 lety

    well thought out material, thanks

  • @chakmaprogrammerofficial

    Thank you so much...It's so clear

  • @leonf.7893
    @leonf.7893 Před 4 lety

    Nice lesson format.

  • @blackdev417
    @blackdev417 Před 3 lety

    Great tutorial!

  • @PixelTB
    @PixelTB Před 3 lety

    Thank you!

  • @ralphlouis2705
    @ralphlouis2705 Před 2 lety

    This by far is one of the best teaching I have gotten

  • @khalidQweder
    @khalidQweder Před 5 lety +1

    Fantastic Tutorial.

  • @healerdance7
    @healerdance7 Před 3 lety +6

    28:21 the thing that my mate teached me is, when ur already in function calling the external function, u don't place brackets because ur not calling the external function right away. Instead, ur pointing to that external function, so when u got to that line, he jumpes to the external function and then calls it.
    In a lot of situations we learn only superficial things and we don't know what's happening behind the scenes. You're explaining well, but please in future try to explain a little bit deeper so we know exactly what's happening there.

  • @webworld6064
    @webworld6064 Před 4 lety

    thanks sir

  • @kahlschlag17
    @kahlschlag17 Před 2 lety

    Great tutorial mate. I missed JS Classes though.

  • @lambouralaa2393
    @lambouralaa2393 Před 4 lety

    very good ty, but you should make sure to differentiate between calling and defining a method.because 38;23.Good job anyway keep it up

  • @skryonline5825
    @skryonline5825 Před 4 lety

    Where does the "class" fit in your four ways of creating objects? Thanks for the video

  • @naqiabedi
    @naqiabedi Před 2 lety

    Thanks a lot

  • @iordanistsapanidis4021

    About the multiword, why can't we use the \ key just like escaping quotes?????

  • @AM-cs8yi
    @AM-cs8yi Před rokem

    what actions can we do with a book? well we can pick it up, throw it, burn it 😂 love your sense of humour too apart from a great teaching style

  • @kemalemin
    @kemalemin Před 3 lety

    So correct me if I'm wrong. Buy, read and review are the methods of the book????

  • @mirumermajeed3344
    @mirumermajeed3344 Před 3 lety

    Which one is easy to define a objects in JS

  • @sivacharan3987
    @sivacharan3987 Před 2 lety

    Sir,I have a doubt on oop in JavaScript.when can implement anything in JavaScript without oop also.Then what is the use of oop in JavaScript?When do We use oop in JavaScript?

  • @idontwantmynameinhere
    @idontwantmynameinhere Před 5 lety +1

    14:52 - There is a fifth, the class. I favour `class Book { ... }` over `function Book(args) { ... }` personally, because I think it's cleaner, looks more like a language like C# or Java or sth, and it's newer.

    • @clevertechie
      @clevertechie  Před 5 lety

      There are no classes in Javascript.

    • @idontwantmynameinhere
      @idontwantmynameinhere Před 5 lety +1

      @@clevertechie there definitely are, I used them multiple times. Search Google for "JavaScript class" and you'll see what I mean my friend :)

    • @DarkGT
      @DarkGT Před 4 lety +1

      @@clevertechie Make video about the classes too.

    • @LastVoyage
      @LastVoyage Před 4 lety

      @@clevertechie www.w3schools.com/js/js_classes.asp

  • @spirlo
    @spirlo Před 2 lety +1

    Bro thank you soo much

    • @clevertechie
      @clevertechie  Před rokem

      Glad I could help

    • @spirlo
      @spirlo Před rokem

      @@clevertechie bro what the fuck you are answering like after 9 months,bro now I am pro in javascript pff :D,nvm thanks again

  • @chrisplusplus6232
    @chrisplusplus6232 Před 4 lety +2

    this is javascript objects topics only, not object oriented programming using javascript

  • @tychoredleaf
    @tychoredleaf Před 3 lety

    I gave up 6 adds in. The video is so broken up with adds it is impossible to learn anything. If you have any say in how many adds break up your video, reduce that number.

  • @sivacharan3987
    @sivacharan3987 Před 2 lety

    Sir,I have a doubt in oop in JavaScript.when can implement anything in JavaScript without oop also.Then what is the use of oop in JavaScript?When do We use oop in JavaScript?