📄 04.js
字号:
// Determining whether strings are compared by value or reference is easy.// We compare two clearly distinct strings that happen to contain the same// characters. If they are compared by value they will be equal, but if they// are compared by reference, they will not be equal:var s1 = "hello";var s2 = "hell" + "o";if (s1 == s2) document.write("Strings compared by value");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -