📜  js.l17 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:02.887000             🧑  作者: Mango

代码示例1
// use strict mode at the first of javascript file this is usefull to write 
    javascript code and sequer-ly.
    
// strict mode makes it easier for devolope to avoid accsidently errore's.
// it helps us intridues the buginto our code

// 1. First, strict mode forbids us to do certain things
// 2. econd, it will actually create visible errors for us in certain
    situations
    in which without strict mode JavaScript will simply fail silently
    without letting us know that we did a mistake.