A talk about numbers in

Поделиться
HTML-код
  • Опубликовано: 21 авг 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

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

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

  • @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

  • @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);

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

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

  • @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"

  • @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

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

    this series is very very very usefull
    Keep up the work

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

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

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

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

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

    Modulus (%) is used to find the remainder.

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

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

  • @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.

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

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

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

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

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

    Woooooo Back To Back.. 5 Videos..

  • @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😁

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

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

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

    HEY.. your tutorials are awesome man!

  • @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.

  • @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

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

    you are great dada

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

    Great video 👍🏾

  • @YasirKhan-bl8lj
    @YasirKhan-bl8lj 4 года назад

    Thanks Hitesh

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

    the modolus operator gives the remainder of a divition.

  • @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 (^_^)

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

    @mohit soni Thanks for the explanation.

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

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

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

    Thanks

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

    present sir🙋 🙋 🙋

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

    % gives reminder

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

    I did my assignment..!

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

    I should have to learn JavaScript for the frontend developer course

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

    That is Modulus for remainders

  • @NITISHKUMAR-yz6re
    @NITISHKUMAR-yz6re 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

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

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

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

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

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

    Mudulator returns division remainder

  • @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

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

    Modulator is just the remainder

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

    modulous gives remainder

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

    ^_^ present sir ;-)

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

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

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

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

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

    Works as remainder

  • @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

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

    Now where is this command key in my keyboard?

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

    In my country = rest of the world

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

    % used to find remainder

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

    Which textbook I need to go for JavaScript???

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

    Sir what is difference between var and let ???

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

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

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

    1 st viewer. 1st liker 1 commenter

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

    why you are not using semicolumn

  • @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

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

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

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

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

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

    var and let difference??

  • @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

  • @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.

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

    hitesh bhai does let and var are same

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

    3 minutes maximum video extended to 13 minutes wao man

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

    you used for copy the statement

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

    % proovide remainder

  • @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...

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

    what does var mean

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

    what is cmd+shift+it?

  • @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

  • @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.

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

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

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

    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 5 лет назад

      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.

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

    difference between var and let?