Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我个人知识的问题。
为什么Javascript使用" "for Strings ( var myString = "test"),但是例如当我尝试调用一个以字符串作为参数的函数时,我必须使用' '?
Javascript
" "
var myString = "test"
' '
它们之间有什么区别?
两者都可以实际使用。所以如果你有一个功能:
function DoSomething(inputValue) { alert(inputValue); }
您可以通过两种方式调用 if:
DoSomething('test');
或者
DoSomething("test");