JS

JavaScript Fundamentals 2 - Declare a variable wit...

17.

Which of the following is the correct way to declare a variable without assigning a value?

const x;

let x;

var x;

const x = null;