4:28 : error cause the variable is declared as Constant. if the variable was declared like : let x = 10, then the value would have been 10, as it's a post increment. So, if we put another console.log after the first console.log then the value would be 11
@codewithkaran8860 Жыл бұрын
Right bro
@ersp645 Жыл бұрын
var x = 2; console.log(x++); let y = 2; console.log(y++); const z = 2; console.log(z++); Terminal: 2 2 TypeError: Assignment to constant variable.
@DelightCodeDev25 ай бұрын
Congratulation in advance for 300k subscribers bro.
@avanishexplorer Жыл бұрын
we need angular and nodejs series..explain crud with use of angular and node pls
@Appdev_reactnative2 жыл бұрын
thank you so much sidhu sir 🤩 , i learned angular and node tutorial from you !!! u r awesome ❤❤❤ , please upload one MEAN stack project
@rajesmaheshwari7 ай бұрын
The ans of last question is that you cannot modify value of any variable if u declare them as const
@lovelymusic35493 жыл бұрын
Sir very nice tutorial thanks sir
@anilrajmeena43733 жыл бұрын
#forSuterdayWalaVideo Product based company kaam kya krti hai kyo ek baar unka application to ban jata hai, fir aage kya krte hai
@codestepbystep3 жыл бұрын
Ok
@KhanRehan-xk7ot3 жыл бұрын
Sir please node js se Angular ka project bnaiga please
@AvinashPatil-e3h Жыл бұрын
awesome video sir!!
@muhammadashfaq52677 ай бұрын
Thank you so much sir
@vibhorekapoor578511 ай бұрын
i was looking for videos of angular project with nodejs but didn’t able to find the same in the playlist .
@ArslaanKhan-uq2pc5 ай бұрын
good video
@PakistanInstitute Жыл бұрын
const ki value change nahi hoti ha is liye error print hoga k const ki value increase kr rhe ho iske liye apko var use krna parega aur jab var use kroge to tab b ans 10 he print hoga q k ++increment krta ha just phr next step ma agar ma console.log(x) print kro to phr 11 print hoga...
@creativedev84802 жыл бұрын
x++ means x = x + 1; And you can't reassign the value in const so Assignment to constant variable error occurred.
@ersp645 Жыл бұрын
please create video for this topic var x = 2; console.log(x++); let y = 2; console.log(y++); const z = 2; console.log(z++); Terminal: 2 2 TypeError: Assignment to constant variable.
@ranjitgupta5009 Жыл бұрын
agar const k jagah let ya var use kre , then error to nhi aayega lekin output 10 he aayega, aisa q ?? 11 aana chahiye na ?????
@kira7mm6 ай бұрын
const se karo yar let se .... 10 he aayega... console.log(x++) = 10 hoga... console.log(++x) = 11 hoga// difference of Pre-Increment & Post-Increment.
@BhagyashriTamrakar7 ай бұрын
lecture #47 completed
@ArslaanKhan-uq2pc5 ай бұрын
thankyou
@kumargourav88922 жыл бұрын
Can we say that REPL is just shell script for Node
@sabijsoti81692 жыл бұрын
yes
@anilrajmeena43733 жыл бұрын
Does people really use it
@ersp645 Жыл бұрын
const x=2 console.log(x) terminal: Uncaught SyntaxError: Identifier 'x' has already been declared
@ritiklikhar96927 ай бұрын
repl use kha hota hai?
@mohdshahbaz5743 жыл бұрын
Error aayega because constant variable h and constant variable value cannot change.
@codingroast75002 жыл бұрын
thaNKS\
@anilrajmeena43733 жыл бұрын
11, to nahi ho skta kyoki ye loop me nahi hai Error aayega
@icydemon97492 жыл бұрын
TypeError: Assignment to constant variable..., ++ iska matlab hota ek number add karo yeh loop ho ya nhi use matlab nhi hain iska
@anilrajmeena43732 жыл бұрын
Haan, your right, loop se to koi mtlb nahi hoga, variable type hi constant hai to usko change nahi Kiya ja skta
@mrmalik20096 ай бұрын
TypeError: Assignment to constant variable.
@damanpreetsingh85492 жыл бұрын
assignment to constant error in
@ravikantchauhan21062 жыл бұрын
Error as const value can't be changed...I guess 🤔
@hemant7847 Жыл бұрын
Error, you can't change the value of a constant variable!
@Paresh_Chaudhary Жыл бұрын
10 aega
@aryanbiswari24512 жыл бұрын
10 aayegaa kyo kii post increament hai
@bharatmewada5280 Жыл бұрын
let x=10; console.log(x++); 10
@131akashanand7 Жыл бұрын
He's using const not let
@deepanshukhorwal89382 жыл бұрын
error aayega because const values are constant and cannot be changes