admin管理员组

文章数量:1343311

I have tried numerous ways...what am I doing wrong??? I am determined to learn and really understand this.

//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");

I have tried numerous ways...what am I doing wrong??? I am determined to learn and really understand this.

//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");
Share Improve this question edited Dec 28, 2012 at 7:40 user166390 asked Dec 28, 2012 at 7:33 tooheymomstertooheymomster 1012 silver badges15 bronze badges 2
  • the error that I keep getting is: TypeError: console.log is not a function, which is partly why I am confused. – tooheymomster Commented Dec 28, 2012 at 7:40
  • If using IE: stackoverflow./questions/690251/… , stackoverflow./questions/5472938/… (Search as appropriate if you are using a different browser/environment.) – user166390 Commented Dec 28, 2012 at 7:41
Add a ment  | 

10 Answers 10

Reset to default 2

Make sure that you are using a browser that supports console.log(Firefox with Firebug, Google Chrome) if you are having problems with your browser, try to run your code in jsfiddle

EDIT

I have tried to run your code in jsfiddle, and in my browser(Chrome and IE9), they both work perfectly.

Based from the ment that I have read you're using firefox. if that's the case make sure you have the firebug plugin installed. you can get it here

You are doing it all correct just log the processed variable instead of raw name,Done !

//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 (myName );
//On line 7, change the value of myName to be just the first 2 letters of your name.
myName=myName.substring(0, 2);
//On line 9, use console.log to print out the myName variable;
console.log(myName );

Among other things, make sure you're using a browser that supports "console.log". This means Chrome, or FireFox with the Firebug plugin installed, or Internet Explorer with the developer tools open. And then of course open the developer tools. For Chrome, it's ctrl-shift-I; for everything else it's F12.

You need to assign to the result of substring back to variable to get the substring result. Use that varible to print the substring result.

Live Demo

myName = myName.substring(0, 2);
console.log(myName );

Probably your error is that you getting "Jeanne" on screen every time.

It is because you are printing constant, and not your variable. Try use this for printing:

myName = myName.substring(0, 2);
console.log (myName);

And as stated in the other answers - make sure you are using a browser that supports console.log

Inorder for the console.log to print out your var value, you should include the variable in between paraenthesis of the console.log

this is shown in the below example;

//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 (myName);

Strings in immutable so you should assign the results to a new variable.

Thank you everyone for your help! I really appreciate you being available and knowledgeable to answer questions. I did figure it out. Apparently the problem was with the substring. I had typed out the word substring in full. I guess it didn't like that and only needed the abbreviated substr.

//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 (myName);
//On line 7, change the value of myName to be just the first 2 
//letters of your name.
myName = myName.substr(0,2);
//On line 9, use console.log to print out the myName variable;
console.log (myName);

I had the console.log is not a function error, and spent a frustrating 15 minutes debugging it. It turned out I had a local variable called console! using window.console.log("...") did the trick.

Presumably you assigned something else to console.log, something that wasn't a function console.log = 5 console.log()

// obviously not referring to a function any more restart your environment. ie. refresh the page

本文标签: javascriptHow to print to the screenquotconsolelog is not a functionquotStack Overflow