js基础-打印调试方法

115 阅读1分钟
var aa = '张三'

    console.log(aa);

    document.write(aa);

    alert(aa)

   

\