首页 > 代码库 > EcmaScript6学习之入门

EcmaScript6学习之入门

const a = ‘const_a‘;
    document.write(‘This is a const : ‘ + a);//IE11,FF31+,chrome35+,opera2+,safari6+,node0.10+,一个常量不可以被重新赋值,并且不能被重复声明
    document.writeln(‘<hr>‘);
    var arr = [‘apple‘,‘orange‘,‘banana‘];
    
    for (var i of arr) {
        document.writeln(i);
    }

本文出自 “Eason's hcc” 博客,请务必保留此出处http://hcc0926.blog.51cto.com/172833/1571448

EcmaScript6学习之入门