What will userInputLength be after executing this code, assuming the user types "JavaScript" into the prompt and clicks "OK"?
let userInput = prompt("Enter a programming language:");
let userInputLength = userInput.length;
What will userInputLength be after executing this code, assuming the user types "JavaScript" into the prompt and clicks "OK"?
let userInput = prompt("Enter a programming language:");
let userInputLength = userInput.length;