1. 程式人生 > 其它 >識別符號、關鍵字、保留字

識別符號、關鍵字、保留字

1. 標識(zhi)符

標識(zhi)符:就是指開發人員為變數、屬性、函式、引數取的名字。 識別符號不能是關鍵字保留字。  

2. 關鍵字

關鍵字:是指 JS本身已經使用了的字,不能再用它們充當變數名、方法名。 包括:break、case、catch、continue、default、delete、do、else、finally、for、function、if、in、 instanceof、new、return、switch、this、throw、try、typeof、var、void、while、with 等。  

3. 保留字

保留字:實際上就是預留的“關鍵字”,意思是現在雖然還不是關鍵字,但是未來可能會成為關鍵字,同樣不能 使用它們當變數名或方法名。 包括:boolean、byte、char、class、const、debugger、double、enum、export、extends、 fimal、float、goto、implements、import、int、interface、long、mative、package、 private、protected、public、short、static、super、synchronized、throws、transient、 volatile 等。 注意:如果將保留字用作變數名或函式名,那麼除非將來的瀏覽器實現了該保留字,否則很可能收不到任何錯 誤訊息。當瀏覽器將其實現後,該單詞將被看做關鍵字,如此將出現關鍵字錯誤。