A talk about numbers in

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ต.ค. 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);

  • @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 5 ปีที่แล้ว

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

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

  • @atulsinghal6268
    @atulsinghal6268 5 ปีที่แล้ว

    Dude, your explanation is very crisp and clear.

  • @TechInventorAman
    @TechInventorAman 4 ปีที่แล้ว

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

  • @2thingys111
    @2thingys111 3 ปีที่แล้ว

    this series is very very very usefull
    Keep up the work

  • @sayantanghosh601
    @sayantanghosh601 6 ปีที่แล้ว +1

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

  • @fabienbedogue527
    @fabienbedogue527 6 ปีที่แล้ว

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

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

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

  • @nitinrodriguez9363
    @nitinrodriguez9363 6 ปีที่แล้ว +1

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

  • @danishjamal104
    @danishjamal104 6 ปีที่แล้ว

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

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

  • @vaishnavv4207
    @vaishnavv4207 4 ปีที่แล้ว

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

  • @someshmahajan7903
    @someshmahajan7903 4 ปีที่แล้ว

    Sir what is difference between var and let ???

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

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

  • @noumansyed5968
    @noumansyed5968 4 ปีที่แล้ว

    Now where is this command key in my keyboard?

  • @akshaykumarchavan383
    @akshaykumarchavan383 6 ปีที่แล้ว

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

  • @link-uv9kd
    @link-uv9kd 4 ปีที่แล้ว

    the modolus operator gives the remainder of a divition.

  • @zafarhussain8273
    @zafarhussain8273 4 ปีที่แล้ว

    why you are not using semicolumn

  • @shubhamsharma-pu2sp
    @shubhamsharma-pu2sp 6 ปีที่แล้ว

    I should have to learn JavaScript for the frontend developer course

  • @yashshende2786
    @yashshende2786 6 ปีที่แล้ว

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

  • @zinyt2.0
    @zinyt2.0 ปีที่แล้ว

    var and let difference??

  • @adityaveerwal5893
    @adityaveerwal5893 5 ปีที่แล้ว

    @mohit soni Thanks for the explanation.

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

  • @sandeshmali4632
    @sandeshmali4632 5 ปีที่แล้ว

    Which textbook I need to go for JavaScript???

  • @mahfuzurrahmanshahin6906
    @mahfuzurrahmanshahin6906 6 ปีที่แล้ว

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

  • @YasirKhan-bl8lj
    @YasirKhan-bl8lj 5 ปีที่แล้ว

    Thanks Hitesh

  • @ProtechBD1
    @ProtechBD1 3 ปีที่แล้ว

    you are great dada

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

  • @mohdnabeel
    @mohdnabeel 6 ปีที่แล้ว +1

    Modulus (%) is used to find the remainder.

  • @2thingys111
    @2thingys111 3 ปีที่แล้ว

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

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

  • @yashmishra5796
    @yashmishra5796 4 ปีที่แล้ว

    hitesh bhai does let and var are same

  • @seospecialist3627
    @seospecialist3627 6 ปีที่แล้ว

    HEY.. your tutorials are awesome man!

  • @mr.magmaquartz2559
    @mr.magmaquartz2559 4 ปีที่แล้ว

    what does var mean

  • @_robynhood_
    @_robynhood_ 4 ปีที่แล้ว

    Great video 👍🏾

  • @mizanurrahmankhan692
    @mizanurrahmankhan692 6 ปีที่แล้ว

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

  • @Rishabhgupta-cz7ym
    @Rishabhgupta-cz7ym 6 ปีที่แล้ว

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

  • @shahidullahmiazi
    @shahidullahmiazi 6 ปีที่แล้ว

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

  • @prathameshdhumal3659
    @prathameshdhumal3659 4 ปีที่แล้ว

    Thanks

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

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

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

  • @shankarsingh7842
    @shankarsingh7842 6 ปีที่แล้ว

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

  • @surajmishra432
    @surajmishra432 6 ปีที่แล้ว +1

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

  • @ankushchavan4612
    @ankushchavan4612 5 ปีที่แล้ว

    what is cmd+shift+it?

  • @iamkaziADroidMan
    @iamkaziADroidMan 5 ปีที่แล้ว

    Works as remainder

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 ปีที่แล้ว

    Why youtube is not sending the notification?..

    • @faizKhan-wn5fr
      @faizKhan-wn5fr 6 ปีที่แล้ว +1

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

    • @mohdnabeel
      @mohdnabeel 6 ปีที่แล้ว

      Same here...

  • @priyanshuanand84
    @priyanshuanand84 6 ปีที่แล้ว

    That is Modulus for remainders

  • @techreeviews3671
    @techreeviews3671 4 ปีที่แล้ว

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

  • @subhamadhikari
    @subhamadhikari 5 ปีที่แล้ว

    modulous gives 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.

  • @ImranKhan-tk5yy
    @ImranKhan-tk5yy 6 ปีที่แล้ว

    Woooooo Back To Back.. 5 Videos..

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

  • @mikelarrivee5115
    @mikelarrivee5115 4 ปีที่แล้ว

    Mudulator returns division remainder

  • @ankushchavan4612
    @ankushchavan4612 5 ปีที่แล้ว

    you used for copy the statement

  • @smrutiranjanrana4777
    @smrutiranjanrana4777 6 ปีที่แล้ว

    difference between var and let?

  • @nayandas-ld4zp
    @nayandas-ld4zp 5 ปีที่แล้ว

    I did my assignment..!

  • @deekshithrajbasa
    @deekshithrajbasa 5 ปีที่แล้ว

    % gives reminder

  • @mesumbinshaukat692
    @mesumbinshaukat692 3 ปีที่แล้ว

    Modulator is just the remainder

  • @tarundhouni4875
    @tarundhouni4875 5 ปีที่แล้ว

    % proovide remainder

  • @abinashkumar8907
    @abinashkumar8907 6 ปีที่แล้ว

    % used to find remainder

  • @saurabhrana981
    @saurabhrana981 6 ปีที่แล้ว +1

    present sir🙋 🙋 🙋

  • @faizKhan-wn5fr
    @faizKhan-wn5fr 6 ปีที่แล้ว +2

    ^_^ present sir ;-)

  • @muhammadtariq7474
    @muhammadtariq7474 5 ปีที่แล้ว

    3 minutes maximum video extended to 13 minutes wao man

  • @arkasingha6111
    @arkasingha6111 3 ปีที่แล้ว

    In my country = rest of the world

  • @yashrajanshukla7790
    @yashrajanshukla7790 6 ปีที่แล้ว

    1 st viewer. 1st liker 1 commenter