我正在尝试编写一个脚本来检查当前是否正在使用被调用的变量。这是代码的示例。
function tellAJoke()
{
var collective = ["variable 1",
"Variable 2",
"Variable 3",
"Variable 4"]
var destination = document.getElementById('destination')
destination.innerHTML = collective[Math.floor(Math.random() * collective.length)];
}
我将如何检查正在使用哪个变量?这是为了防止再次调用相同的变量。