Day03-ES6

一.ES6函数





    
    
    Document




    



二.箭头函数





    
    
    Document




    
点击

三.promise使用方式





    
    
    Document




    



四.promise使用





    
    
    Document

    




    



五.promise解决回调地狱





    
    
    Document




    



六.async函数





    
    
    Document




    



七.async-await使用





    
    
    Document




    

    



八.导出js

let num = 10;

// 导出
export default num;

九.导入js

import num from "./08-导出.js";

console.log(num);

你可能感兴趣的:(es6,javascript,前端)