javascript数组与数值

来源:互联网 发布:sql server 2008免费 编辑:程序博客网 时间:2024/05/16 01:45
 <script type="text/javascript">
        var a='3';
        var b='4';
        document.write('<br>'+a*b);//12
        document.write('<br>'+a+b+'<br>');//34..注意这里是字符串相加
        document.write(Number(a)+Number(b));//7
        document.write('<br>');
        document.write(+a + +b);//7
        document.write('<br>');
        
        var age = '20 year';
        var age2= '08 year';
        document.write(parseInt(age,10));//20
        document.write('<br>');
        document.write(parseInt(age2));//0
        document.write('<br>');
        document.write(parseInt(age2,10));//08
        document.write('<br>');
        //isNan(a) a是否非数值形
        //四舍五入Math.round(n);向上舍入Math.ceil(n);向下舍入Math.floor(n);
    </script>
    
    <script type="text/javascript">
           var arrylist = [1,'a',true];
          arrylist.push('b','c');//pop()
          arrylist.unshift('head');//shift()
          //splice可增减改
          //删splice(1,2);插splice(2,0,'splice_insert');换splice(2,1,'splice_replace');
          
          var my_string = 'asd qwe zcx asd er qw ad';
          //toUpperCase();tolowerCase();length;indexOf('');lastIndexOf('');slice(n);slice(n,m);search(regex);replact(regex,'replaceString');
      
          document.write('<br>');
          var people = ['ron','sally','tricia','bob'];
          var random = Math.floor(Math.random()*people.length);
          document.write(people[random]);
          document.write('<br>');
    </script>
原创粉丝点击