Computer Science, asked by sujalpardeshi2004, 1 month ago

ix in Javascript variable name can be limited

upto ____ characters.

a) 256 b) 255 c) 65536 d) 128​

Answers

Answered by surjeetsingh3999587
6

Answer:

There's no limit to the length of the variable name. You can't use one of JavaScript's reserved words as a variable name. All programming languages have a supply of words that are used internally by the language and that can't be used for variable names because doing so would cause confusion (or worse).

Explanation:

make me brainlist

Answered by ishwaryam062001
0

Answer:

The answer is 255 characters

Explanation:

From the above question,

They have given :

In JavaScript, a variable name can be limited to 63 characters.

   There's no specific limit to the length of a variable name in JavaScript, but it's recommended to keep it short and descriptive. The only restriction on variable names in JavaScript is that they cannot be a reserved word and must start with a letter, underscore (_), or dollar sign ($).

The maximum length of a variable name in JavaScript is not specified, but it is a good practice to keep it short and descriptive, usually around 20 characters or less. In JavaScript

  • The maximum length of a JavaScript variable name is not specified, but it is a good practice to keep it short and descriptive.

  • There are no strict limits on the length of a variable name in JavaScript, but it is recommended to keep it under around 20 characters for readability and maintainability purposes.

  • In JavaScript, a variable name can start with a letter, underscore (_), or dollar sign ($), and can contain letters, digits, underscores, and dollar signs. However, it cannot be a reserved word.

For more such related questions : https://brainly.in/question/48522283

#SPJ3

Similar questions