Friday, August 29, 2025
HomeLanguagesJavascriptJavaScript console.log() Method

JavaScript console.log() Method

The console.log() is a function in JavaScript that is used to print any kind of variables defined before in it or to just print any message that needs to be displayed to the user.

Syntax:

console.log("");

Parameters: It accepts a parameter that can be an array, an object, or any message. 

Return value: It returns the value of the parameter given. 

The below examples illustrate the JavaScript console.log() Method:

Passing a number as an argument: If the number is passed to the function console.log() then the function will display it.

Example 1: 

javascript




let a = 2;
console.log(a);


Output:

  

Passing a string as an argument: If the string is passed to the function console.log(), then the function will display it.

 Example 2: 

javascript




let str = "neveropen";
console.log(str);


Output:

  

Passing a char as an argument: If the char is passed to the function console.log(), then the function will display it. 

Example 3: 

javascript




let ch = '2';
console.log(ch);


Output: 

 

Passing a message as an argument: If the message is passed to the function console.log(), then the function will display the given message.

 Example4: 

javascript




console.log("neveropen");


Output:

  

Passing a function as an argument: If the function is passed to the function console.log(), then the function will display the value of the passed function.

 Example 5: 

javascript




function func() { return (5 * 19); }
console.log(func());


Output:

  

Passing a number with the message as an argument: If the number is passed to the function console.log(), then the function will display it along with the given message. 

Example 6: 

javascript




let a = 2;
console.log("The value of a is " + a);


Output:

 

Passing a string with the message as an argument: If the string is passed to the function console.log(), then the function will display it along with the given message. 

Example 7: 

javascript




let str = "neveropen";
console.log("The value of str is " + str);


Output:

  

Passing a char with the message as an argument: If the char is passed to the function console.log(), then the function will display it along with the given message. 

Example 8: 

javascript




let ch = '2';
console.log("The value of ch is " + ch);


Output:

  

Supported Browsers: It is supported by all browsers

JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32249 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6617 POSTS0 COMMENTS
Nicole Veronica
11792 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11838 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7012 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6701 POSTS0 COMMENTS