前端学习笔记_JS基础(1)

JS的代码是一行一行执行的,JS中一切皆对象。

变量提升

console.log( a );  //undefined
var a = 10;
console.log( a );  //10

由此可见,a被预处理到了最前面,变量提升只对var命令声明的变量有效,否则就会报错。

JS注释

// 单行注释

/*
*   多行注释
*/ 

和文档注释

/**
* 
* @method 求和
* @param  {Number} 是一个数字
* @param  {Number} 另一个数字
* @return {Number} 两个数之和
*/
function add(a,b){
    return a + b;
};

JS的数据类型

基本类型
  • String

      var a = "cjj  IS my Best Friend";
    

String常见方法

  console.log( String.fromCharCode(20013,65,97) );  
  console.log( a.toUpperCase() ); 
  console.log( a.toLowerCase() );  
  console.log( a.replace('cjj', 'cdd')  ); 
  console.log( a.substr(1,3) );  //substr(start, length)   
  console.log( a.substring(1,3) );  //substring(start,end-1),substring不支持负值 
  console.log( a.slice(1,3) );   //slice(start,end-1)
  console.log( a.indexOf('m') );  
  console.log( a.lastIndexOf('m') );
  • Number

    var b = 100;
    console.log( 0.1 + 0.2 ); //0.30000000000000004      浮点数不精确
    

Number类型中,NaN不等于NaN。如何判断NaN:

  if(!Number.isNaN){
        Number.isNaN = function(n){
            return (
                typeof n === 'number' &&  window.isNaN(n)
            );
        };
  };
  • Boolean

    console.log( Boolean(0)  ); //false
    
  • Null

    var a = null;
    
  • Undefined

    var c;
    console.log( c );  
    
引用类型
  • Array

    var arr = [];
    
  • Function

    function add(){};
    
  • Object

    var obj = {};
    

JS中数组[] null都是Object类型。

如何判断数据类型
  console.log( typeof aaa );    //undefined
  console.log( typeof "foo" );  //String
  console.log( typeof 123 );  //Number
  console.log( typeof true );  //Boolean
  console.log( typeof { a : 1 });   //Object
  console.log( typeof function(){} ); //Function 
  console.log( typeof null );       //Object 
  console.log( typeof [1,2,3] );    //Object

由此可见,typeof 并不能准确判断类型,如何解决呢?使用Object.prototype.toString

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 第三章 基本概念 3.1 语法 ECMAScript标识符一般采用驼峰大小写格式,也就是第一个字母小写,剩下的每个...
    小雄子阅读 3,693评论 0 1
  • JS基础讲解 JavaScript组成ECMAScript:解释器、翻译DOM:Document Object M...
    FConfidence阅读 3,655评论 0 1
  • 有人说过,很多弯路到最后都成了直路,所有的坑到最后也都成了坦途;所谓的直路和坦途并不是摆在眼前的,都是不断的的...
    老衲法号一眉道人阅读 5,199评论 0 4
  • 单例模式 适用场景:可能会在场景中使用到对象,但只有一个实例,加载时并不主动创建,需要时才创建 最常见的单例模式,...
    Obeing阅读 6,459评论 1 10
  • js简介 Js是一种基于事件和对象驱动的解释性、松散性的语言。 一切皆对象 javascript 布兰登艾奇 ...
    塔库纳玛哈哈阅读 4,980评论 0 2

友情链接更多精彩内容