Тёмный

A talk about numbers in  

Hitesh Choudhary
Подписаться 950 тыс.
Просмотров 98 тыс.
50% 1

Наука

Опубликовано:

 

13 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 96   
@HiteshCodeLab
@HiteshCodeLab 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 лет назад
"%" 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 лет назад
Thanks in a million! “Great teachers are hard to find.”
@yashrajanshukla7790
@yashrajanshukla7790 6 лет назад
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 лет назад
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 лет назад
modulus is use to find the remainder.. eg 5%2=1
@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.
@NoGoodHandlesComingToMind
@NoGoodHandlesComingToMind 5 лет назад
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.
@danishjamal104
@danishjamal104 6 лет назад
a%b = c Mod operator returns remainder c after dividing a by b For example 9%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
@2thingys111
@2thingys111 3 года назад
this series is very very very usefull Keep up the work
@surajmishra432
@surajmishra432 6 лет назад
Learning JavaScript as i promised yesterday....😘😘
@mohdnabeel
@mohdnabeel 6 лет назад
Modulus (%) is used to find the remainder.
@sayantanghosh601
@sayantanghosh601 6 лет назад
sir what is the difference between var and let?? you have used both to assign variable...
@tusharsingh2439
@tusharsingh2439 6 лет назад
var is used to initialise variables (memory holders whos values can be changed) and let is used to initialize constants
@raihanakram530
@raihanakram530 6 лет назад
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
@nitinrodriguez9363
@nitinrodriguez9363 6 лет назад
Sir. hiteshChoudhary, if you can get me clear touch on html and css would be really great!....
@Rishabhgupta-cz7ym
@Rishabhgupta-cz7ym 6 лет назад
% operator is use to find remainder Example - 9%2=1
@adityaveerwal5893
@adityaveerwal5893 5 лет назад
@mohit soni Thanks for the explanation.
@mizanurrahmankhan692
@mizanurrahmankhan692 6 лет назад
" % " is used to find remainder in any programming language.
@link-uv9kd
@link-uv9kd 4 года назад
the modolus operator gives the remainder of a divition.
@seospecialist3627
@seospecialist3627 6 лет назад
HEY.. your tutorials are awesome man!
@mahfuzurrahmanshahin6906
@mahfuzurrahmanshahin6906 6 лет назад
can you make any video on uses of Terminal and Command Line?
@shankarsingh7842
@shankarsingh7842 6 лет назад
Great brother ....mjja aa gya....ek din me js puri😁
@YasirKhan-bl8lj
@YasirKhan-bl8lj 5 лет назад
Thanks Hitesh
@TechInventorAman
@TechInventorAman 4 года назад
dont you think that isntead of 5/9 if you directly use 1.8 the computational complexity of the code reduces
@ImranKhan-tk5yy
@ImranKhan-tk5yy 6 лет назад
Woooooo Back To Back.. 5 Videos..
@anshulsharma3137
@anshulsharma3137 6 лет назад
Let or var??
@sony07101988
@sony07101988 6 лет назад
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 лет назад
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 лет назад
@@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
@shubhamsharma-pu2sp
@shubhamsharma-pu2sp 6 лет назад
I should have to learn JavaScript for the frontend developer course
@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 лет назад
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
@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
@daily-essentials001
@daily-essentials001 6 лет назад
Yash Shende not only 1 or 0 it may be any number
@daily-essentials001
@daily-essentials001 6 лет назад
Yash Shende like 12%7==5
@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
@someshmahajan7903
@someshmahajan7903 4 года назад
Sir what is difference between var and let ???
@akshaykumarchavan383
@akshaykumarchavan383 6 лет назад
Hey hitesh,,,, what is difference between let and var?
@ProtechBD1
@ProtechBD1 3 года назад
you are great dada
@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
@yashmishra5796
@yashmishra5796 4 года назад
hitesh bhai does let and var are same
@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 лет назад
Thank you @@Streamlinedotcom
@priyanshuanand84
@priyanshuanand84 6 лет назад
That is Modulus for remainders
@_robynhood_
@_robynhood_ 4 года назад
Great video 👍🏾
@deekshithrajbasa
@deekshithrajbasa 5 лет назад
% gives reminder
@nayandas-ld4zp
@nayandas-ld4zp 5 лет назад
I did my assignment..!
@sandeshmali4632
@sandeshmali4632 5 лет назад
Which textbook I need to go for JavaScript???
@zinyt2.0
@zinyt2.0 Год назад
var and let difference??
@mikelarrivee5115
@mikelarrivee5115 4 года назад
Mudulator returns division remainder
@subhamadhikari
@subhamadhikari 5 лет назад
modulous gives remainder
@zafarhussain8273
@zafarhussain8273 4 года назад
why you are not using semicolumn
@vaishnavv4207
@vaishnavv4207 4 года назад
Is 'let' and 'var' are same in JavaScript?
@iamkaziADroidMan
@iamkaziADroidMan 5 лет назад
Works as remainder
@noumansyed5968
@noumansyed5968 4 года назад
Now where is this command key in my keyboard?
@2thingys111
@2thingys111 3 года назад
when i try to do that trick by selecting all the text just deltes and writes the symbol
@UmeshSingh-dh7ch
@UmeshSingh-dh7ch 6 лет назад
is there a difference between let and var?
@yashrajanshukla7790
@yashrajanshukla7790 6 лет назад
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.
@shahidullahmiazi
@shahidullahmiazi 6 лет назад
Here 5 * 4 = 20 / 2 = 10 + 4 output is 14 Ok?
@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.
@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
@saurabhrana981
@saurabhrana981 6 лет назад
present sir🙋 🙋 🙋
@mr.magmaquartz2559
@mr.magmaquartz2559 4 года назад
what does var mean
@mesumbinshaukat692
@mesumbinshaukat692 3 года назад
Modulator is just the remainder
@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
@yashrajanshukla7790
@yashrajanshukla7790 6 лет назад
Why youtube is not sending the notification?..
@faizKhan-wn5fr
@faizKhan-wn5fr 6 лет назад
yash rajan shukla RU-vid take time to send notification almost 15-20 min
@mohdnabeel
@mohdnabeel 6 лет назад
Same here...
@faizKhan-wn5fr
@faizKhan-wn5fr 6 лет назад
^_^ present sir ;-)
@techreeviews3671
@techreeviews3671 4 года назад
Sir I want to be best app developer plz help me to do
@abinashkumar8907
@abinashkumar8907 6 лет назад
% used to find remainder
@ankushchavan4612
@ankushchavan4612 5 лет назад
you used for copy the statement
@ankushchavan4612
@ankushchavan4612 5 лет назад
what is cmd+shift+it?
@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
@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.
@smrutiranjanrana4777
@smrutiranjanrana4777 6 лет назад
difference between var and let?
@yashrajanshukla7790
@yashrajanshukla7790 6 лет назад
1 st viewer. 1st liker 1 commenter
Далее
Undefined and Boolean Values in Javascript
10:17
Просмотров 86 тыс.
If and Else statement in #javascript
13:11
Просмотров 91 тыс.
Cool Parenting Gadget Against Mosquitos! 🦟👶
00:21
Generating a random number in javascript
14:26
Просмотров 49 тыс.
TypeScript - The Basics
12:01
Просмотров 1,5 млн
Methods and this keyword in javascript
13:55
Просмотров 62 тыс.
Kings territory problem in Javascript
8:27
Просмотров 62 тыс.
The Async Await Episode I Promised
12:04
Просмотров 1,1 млн
All Rust string types explained
22:13
Просмотров 176 тыс.
Why Signals Are Better Than React Hooks
16:30
Просмотров 480 тыс.
Куда пропал Kodak?
1:01
Просмотров 12 млн
Кому новенький айфон
0:19
Просмотров 3,8 млн