JavaScript学习--标识符、关键字、保留字

本人初学者,博客随笔基本都是记录自己的学习知识,初级水平。大神请忽略,谢谢。

*标识符

所谓标识符,就是指变量、函数、属性名字,或者函数的参数。

    第一个字符必须是字母、下滑线、美元符号。

    其他字符可以是字母、下滑线、美元符号或数字。

 

*关键字

关键字用于表示控制语句的开始和结束,或者用于执行特定操作等。不能用作标识符。

1 <script>
2      var        new         instanceof       typeof
3      try        catch       throw            finally     
4      return     void        continue         for         
5      switch     case        break            default    
6      do         while       debugger         function    
7      this       with        if               else                
8      in         delete          
9 </script>

 

*保留字

另外一组不能被用作标识符的保留字,他们很有可能在将来被用作关键字。ECMA-262第3版定义的全部保留字:

1      abstract    enum        int          short 
2      boolean     export      interface    static
3      byte        extends     long         super
4      char        final       native       synchronized
5      class       float       package      throws
6      const       goto        private      transient
7      public      implements  protected    volatile
8      double      import      public

 

posted @ 2015-06-30 14:04  漫长之路  阅读(219)  评论(0编辑  收藏  举报