Challenger App

No.1 PSC Learning App

1M+ Downloads
What is the correct way to declare a variable in JavaScript ?

Adeclare product_name

Bvariable product_name

Cvar product_name

Dchar product_name

Answer:

C. var product_name

Read Explanation:


  • Variables are containers for storing information.
  • Creating a variable in JavaScript is called "declaring" a variable: var carName.
  • In JavaScript, variables are declared using the 'var' keyword, followed by the variable name and an optional initial value.
  • After the declaration, the variable is empty (it has no value).

Related Questions:

പ്രോഗ്രാമിംഗ് ഭാഷയുടെ നിയമങ്ങൾ അല്ലെങ്കിൽ വാക്യഘടന പാലിക്കാത്തത് കൊണ്ട് സംഭവിക്കുന്ന തെറ്റുകൾ അറിയപ്പെടുന്നത് ?
In _______, search start at the beginning of the list and check every element in the list.
Find the user defined data type in C :
A self-relocating program is one which :
Who invented the high level programming language C?