JS

JavaScript Fundamentals 1 - Declares and assigns a...

11.

Which of the following options correctly declares and assigns a value to a variable in JavaScript?

var x = 10;

let y = true;

const z = "Hello!";

x = 5;