A talk about numbers in

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 96

  • @HiteshCodeLab
    @HiteshCodeLab  6 лет назад +6

    Videos in a proper sequence and with discussion support are available at my website (of course free). It's easier for me to address issues at one place, instead of drilling into every video. A quick word, please help others in the discussion too.
    courses.learncodeonline.in/learn/Javascript-for-2018-developer

  • @bhanurulz
    @bhanurulz 6 лет назад +12

    "%" is a modulus operator, it is basically used to give us remainder of an operation. For example 100 % 2 will give us 0 , however 99 % 2 will give us 1

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 лет назад +8

    Wow! 5 videos in a day.. You are doing such a great hard work.. Mind blowing hard work.. And mind blowing video

  • @johng5295
    @johng5295 5 лет назад +3

    Thanks in a million! “Great teachers are hard to find.”

  • @yashshende2786
    @yashshende2786 6 лет назад +4

    program to convert Celsius and Fahrenheit to Kelvin
    (1)celsius to kelvin
    let cesiusTemp=40;
    let kelvinTemp=celsiusTemp+273.15;
    console.log(kelvinTemp);
    (2) Fahrenheit to kelvin
    let FahrenheitTemp=40;
    let kelvin=(FahrenheitTemp-32)*(5/9)+273.15;
    console.log(kelvin);

  • @lalitgupta590
    @lalitgupta590 4 года назад

    Modulus operator gives us remaining value
    let complex = ((4+4)*5)%3
    console.log(complex)
    and answer is "1"
    This code work like this
    4+4 = 8
    8*5 = 40
    40/3 = 19 and remaning is 1 and answer is "1"

  • @adheipsingh1797
    @adheipsingh1797 6 лет назад

    who the fuck gave him dislike , this man deserves a salute , god bless you brother

  • @atulsinghal6268
    @atulsinghal6268 5 лет назад

    Dude, your explanation is very crisp and clear.

  • @sayantanghosh601
    @sayantanghosh601 6 лет назад +1

    modulus is use to find the remainder.. eg 5%2=1

  • @danishjamal104
    @danishjamal104 6 лет назад

    a%b = c
    Mod operator returns remainder c after dividing a by b
    For example
    9%2 =1

  • @2thingys111
    @2thingys111 3 года назад

    this series is very very very usefull
    Keep up the work

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 лет назад

    You are amazing.. Hard worker.. Content is super amazing

  • @JahidHasan-zl7om
    @JahidHasan-zl7om 4 года назад

    Though I am a Bengali but your English sounds like my native language.. Its awesome

  • @amitkeshari7023
    @amitkeshari7023 6 лет назад

    Hi Hitsh , I am sure many people r new to VS code, so can u also type shortcut command that you use in VS code for Commenting Block,adding Prenthesis in function etc. while you explain.

  • @Bertoed
    @Bertoed 6 лет назад

    The % operator also known as modulus returns the remain when ever two numbers are divided
    e.g 7 % 4 = 3

  • @NoGoodHandlesComingToMind
    @NoGoodHandlesComingToMind 5 лет назад +1

    There will theoretically be a day wherein I don't first try to spell "celsius" as "celcius", but today was not that day.
    Anyway, thanks very much for this video series.

  • @seospecialist3627
    @seospecialist3627 6 лет назад

    HEY.. your tutorials are awesome man!

  • @surajmishra432
    @surajmishra432 6 лет назад +1

    Learning JavaScript as i promised yesterday....😘😘

  • @mohdnabeel
    @mohdnabeel 6 лет назад +1

    Modulus (%) is used to find the remainder.

  • @Rishabhgupta-cz7ym
    @Rishabhgupta-cz7ym 6 лет назад

    % operator is use to find remainder
    Example - 9%2=1

  • @shankarsingh7842
    @shankarsingh7842 6 лет назад

    Great brother ....mjja aa gya....ek din me js puri😁

  • @adityaveerwal5893
    @adityaveerwal5893 5 лет назад

    @mohit soni Thanks for the explanation.

  • @mizanurrahmankhan692
    @mizanurrahmankhan692 6 лет назад

    " % " is used to find remainder in any programming language.

  • @nitinrodriguez9363
    @nitinrodriguez9363 6 лет назад +1

    Sir. hiteshChoudhary, if you can get me clear touch on html and css would be really great!....

  • @shubhamsharma-pu2sp
    @shubhamsharma-pu2sp 6 лет назад

    I should have to learn JavaScript for the frontend developer course

  • @YasirKhan-bl8lj
    @YasirKhan-bl8lj 5 лет назад

    Thanks Hitesh

  • @anshulsharma3137
    @anshulsharma3137 6 лет назад +15

    Let or var??

    • @sony07101988
      @sony07101988 6 лет назад +28

      The scope of "let" is limited while that of "var" is not.
      Consider this example:
      var i = 34
      for(let i=0; i

    • @shauniop
      @shauniop 6 лет назад +3

      let allows you to declare variables that are limited in scope to the block, statement, or expression on which it is used. This is unlike the var keyword, which defines a variable globally, or locally to an entire function regardless of block scope.

    • @shahidullahmiazi
      @shahidullahmiazi 6 лет назад

      What happen if I use only var keyword?

    • @VirendraKumar-np3nv
      @VirendraKumar-np3nv 5 лет назад

      @@sony07101988 thanks for good explanation ,this is really nice example

    • @user-wb5ox7nw2u
      @user-wb5ox7nw2u 5 лет назад +1

      @@sony07101988 bro you are amazing dud 'let' is a local variable (it limited up to a particular block ) but var is global variable it works up to entire function
      -thanks bro

  • @TechInventorAman
    @TechInventorAman 4 года назад

    dont you think that isntead of 5/9 if you directly use 1.8 the computational complexity of the code reduces

  • @ProtechBD1
    @ProtechBD1 3 года назад

    you are great dada

  • @ImranKhan-tk5yy
    @ImranKhan-tk5yy 6 лет назад

    Woooooo Back To Back.. 5 Videos..

  • @its-nitish-kumar-30
    @its-nitish-kumar-30 6 лет назад

    I am sure that you will definately complete JS course in a week or even in less than that... with this much of speed and consistency

    • @HiteshCodeLab
      @HiteshCodeLab  6 лет назад +2

      I am surely looking for this as I have limited free and I want to use it as much as I can. makes me more productive. :D

  • @link-uv9kd
    @link-uv9kd 4 года назад

    the modolus operator gives the remainder of a divition.

  • @_robynhood_
    @_robynhood_ 4 года назад

    Great video 👍🏾

  • @sayantanghosh601
    @sayantanghosh601 6 лет назад +4

    sir what is the difference between var and let??
    you have used both to assign variable...

    • @tusharsingh2439
      @tusharsingh2439 6 лет назад +1

      var is used to initialise variables (memory holders whos values can be changed) and let is used to initialize constants

    • @raihanakram530
      @raihanakram530 6 лет назад +1

      Both can be used...doesn't matter...
      It's very controversial whether using let or using var is better...but both means the same:assigning variable (^_^)

  • @prathameshdhumal3659
    @prathameshdhumal3659 4 года назад

    Thanks

  • @yashshende2786
    @yashshende2786 6 лет назад

    sir modulus is used get reminder ie.(1 or 0) Ex.. 12%4==1 or 12%5==0

  • @mahfuzurrahmanshahin6906
    @mahfuzurrahmanshahin6906 6 лет назад

    can you make any video on uses of Terminal and Command Line?

  • @zinyt2.0
    @zinyt2.0 Год назад

    var and let difference??

  • @Raj-uz9nv
    @Raj-uz9nv 6 лет назад

    The term Celsius.js is not recognized as the name of a cmdlet function sxript file or operable program check the spelling of name or if a path is included verify that the path is xorrect and try again
    category info object not found
    fully qualified error commandfound exception.
    Windows poweshell doeanot load commands feom the current location by default....
    Answer ir

  • @sandeshmali4632
    @sandeshmali4632 5 лет назад

    Which textbook I need to go for JavaScript???

  • @someshmahajan7903
    @someshmahajan7903 4 года назад

    Sir what is difference between var and let ???

  • @2thingys111
    @2thingys111 3 года назад

    when i try to do that trick by selecting all
    the text just deltes and writes the symbol

  • @noumansyed5968
    @noumansyed5968 4 года назад

    Now where is this command key in my keyboard?

  • @zafarhussain8273
    @zafarhussain8273 4 года назад

    why you are not using semicolumn

  • @priyanshuanand84
    @priyanshuanand84 6 лет назад

    That is Modulus for remainders

  • @nayandas-ld4zp
    @nayandas-ld4zp 5 лет назад

    I did my assignment..!

  • @vaishnavv4207
    @vaishnavv4207 4 года назад

    Is 'let' and 'var' are same in JavaScript?

  • @akshaykumarchavan383
    @akshaykumarchavan383 6 лет назад

    Hey hitesh,,,, what is difference between let and var?

  • @iamkaziADroidMan
    @iamkaziADroidMan 5 лет назад

    Works as remainder

  • @yashmishra5796
    @yashmishra5796 4 года назад

    hitesh bhai does let and var are same

  • @deekshithrajbasa
    @deekshithrajbasa 5 лет назад

    % gives reminder

  • @mr.magmaquartz2559
    @mr.magmaquartz2559 4 года назад

    what does var mean

  • @mythilymegha2823
    @mythilymegha2823 5 лет назад

    Hi Hitesh ...Why are you again using var instead of let.... should i use var or let

    • @Streamlinedotcom
      @Streamlinedotcom 5 лет назад

      var and let are both used for function declaration in javascript but the difference between them is that var is function scoped and let is block scoped. It can be said that a variable declared with var is defined throughout the program as compared to let.

    • @mythilymegha2823
      @mythilymegha2823 5 лет назад +1

      Thank you @@Streamlinedotcom

  • @mahmudulhussain5401
    @mahmudulhussain5401 6 лет назад

    bro are you sure that you will continue javascript series or suddleny you will stop ?plz tell me i am starting flowwing you

  • @subhamadhikari
    @subhamadhikari 5 лет назад

    modulous gives remainder

  • @shahidullahmiazi
    @shahidullahmiazi 6 лет назад

    Here 5 * 4 = 20 / 2 = 10 + 4 output is 14 Ok?

  • @mikelarrivee5115
    @mikelarrivee5115 4 года назад

    Mudulator returns division remainder

  • @sunnytech2815
    @sunnytech2815 5 лет назад

    u think his tuts are too confusing he taught something else in the variable lesson now he is starting the program with var

  • @adamyarastogi8634
    @adamyarastogi8634 4 года назад

    Can anyone tell me to learn java script and be a full stack developer do i have to gain very high programming knowledge.

  • @saurabhrana981
    @saurabhrana981 6 лет назад +1

    present sir🙋 🙋 🙋

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 лет назад

    Why youtube is not sending the notification?..

    • @faizKhan-wn5fr
      @faizKhan-wn5fr 6 лет назад +1

      yash rajan shukla RUclips take time to send notification almost 15-20 min

    • @mohdnabeel
      @mohdnabeel 6 лет назад

      Same here...

  • @ankushchavan4612
    @ankushchavan4612 5 лет назад

    you used for copy the statement

  • @ankushchavan4612
    @ankushchavan4612 5 лет назад

    what is cmd+shift+it?

  • @faizKhan-wn5fr
    @faizKhan-wn5fr 6 лет назад +2

    ^_^ present sir ;-)

  • @yt_bharat
    @yt_bharat 6 лет назад

    Can we not use var keyword for strings?

    • @tapiwanasheshoshore1840
      @tapiwanasheshoshore1840 5 лет назад

      it is possible
      just say
      var name = 'John'
      .
      .
      .
      console.log(name);
      it will print John

  • @adilip8485
    @adilip8485 6 лет назад

    Hello Hitesh,
    I am a web designer having 1.6 years of experience in HTML and CSS, I just finished the javascript programme but I'm not confident about my code, I request you to please suggest me any idea to get perfect in writing javascript code.

    • @adilip8485
      @adilip8485 6 лет назад

      I forgot to say that thank you so much for providing such wonderful tutorials... Good Job... I really like your videos and moreover your way of explanation very cool.

  • @mesumbinshaukat692
    @mesumbinshaukat692 3 года назад

    Modulator is just the remainder

  • @techreeviews3671
    @techreeviews3671 4 года назад

    Sir I want to be best app developer plz help me to do

  • @abinashkumar8907
    @abinashkumar8907 6 лет назад

    % used to find remainder

  • @UmeshSingh-dh7ch
    @UmeshSingh-dh7ch 6 лет назад +3

    is there a difference between let and var?

    • @yashrajanshukla7790
      @yashrajanshukla7790 6 лет назад +1

      Umesh Singh yes

    • @sularaperera2719
      @sularaperera2719 6 лет назад

      Yes, the difference is with the Scope, just read more about "local scope" and "global scope". you will find out. The good practice is to use the keyword "let" to declare a variable. it's a New ES6 standard.

  • @tarundhouni4875
    @tarundhouni4875 5 лет назад

    % proovide remainder

  • @muhammadtariq7474
    @muhammadtariq7474 5 лет назад

    3 minutes maximum video extended to 13 minutes wao man

  • @arkasingha6111
    @arkasingha6111 3 года назад

    In my country = rest of the world

  • @smrutiranjanrana4777
    @smrutiranjanrana4777 6 лет назад

    difference between var and let?

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 лет назад

    1 st viewer. 1st liker 1 commenter