Programming (12th Grade)
JavaScript
Which of the following is a correct way to create a variable in JavaScript?
var x = 10;
let x := 10;
const x = 10;
Both A and C