作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我尝试了很多方法...我做错了什么???我决心学习并真正理解这一点。
//On line 2, declare a variable myName and give it your name.
var myName = "Jeanne";
//On line 4, use console.log to print out the myName variable.
console.log ("Jeanne");
//On line 7, change the value of myName to be just the first 2 letters of your name.
myName.substring(0, 2);
//On line 9, use console.log to print out the myName variable;
console.log("Jeanne");
最佳答案
确保您使用的浏览器支持console.log
(Firefox with Firebug、Google Chrome)如果您的浏览器有问题,请尝试在jsfiddle 中运行您的代码
编辑
我尝试在 jsfiddle 中运行您的代码,在我的浏览器(Chrome 和 IE9)中,它们都运行良好。
根据我读到的评论,您使用的是 Firefox。如果是这种情况,请确保您安装了 Firebug 插件。你可以得到它here
关于javascript - 如何打印到屏幕 - "console.log is not a function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14066208/
我是一名优秀的程序员,十分优秀!