JavaScript for Developers 09 - Variable Declaration

preview_player
Показать описание

Learn how variables are created in JavaScript.
Рекомендации по теме
Комментарии
Автор

var name; // declares variable
name= "Mulagura"; // initializes variable that's already been declared
var name = "Ram Mulagura"; // declares and initializes variable

MULAGURA
Автор

Thank you for sharing your knowledge, keep working on it please !

zikyoubi
Автор

Thank you for such amazing videos. These are very helpful ..

myvid
Автор

You should use const or let instead of var

ATM-Tech
Автор

-08/21/2024 @ 2355-
Thanks for sharing this video, its very helpful. although my problem with declaring variables is when I try to pass the program through a JavaScript validator. I get errors. So, I don't know what the validator is asking me to do.

Exsecrabilis
Автор

which is better to declare a variable: var, let or const ?

anku
Автор

Most Javascript experts agree var shouldn't be used. Douglas Crockford, the man who popularized JSON, is against the use of var. He indicates that, “var might possibly still be useful in an extreme case like machine-generated code, but I'm stretching hard there.

wartem
Автор

can i use visual studio code for java script web application development

jony
Автор

You know the content is good when the dislikes is 0. +1

itsnotallrainbowsandunicor