Computer Science, asked by Ashwin2468, 1 month ago

Name the statement that declares variables by assigning them a name and data type. ​

Answers

Answered by bhattacharyyaakash22
4

Answer:

To create a variable in JavaScript, use the let keyword. To be concise, we can combine the variable declaration and assignment into a single line: let message = 'Hello! '; // define the variable and assign the value alert(message); // Hello!

Explanation:

Hope it helps

Pls mark as branliest

Answered by ahashikala12345
0

Answer:

To create a variable in JavaScript, use the let keyword.

Similar questions