Steps to call a JavaScript Function from Chrome Console

Open the Chrome Console

You can open the Chrome Console by right-clicking on your webpage, selecting “Inspect” from the context menu, and then clicking on the “Console” tab. Alternatively, you can use the keyboard shortcut Ctrl+Shift+I in Windows or Cmd+Opt+I on Mac to open the Developer Tools and then click on the “Console” tab.

To Open the Console in the Chrome.

Call the Function

Once the console is open, you can call any JavaScript

function that is defined in the script(<script> </script>)tag in the HTML or in the JavaScript file by typing the function name followed by parentheses () and pressing Enter.

For example: If you have a function named myFunction, you would type myFunction() in the console and press Enter to execute it.

HTML
<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
  
<body>
    <h1></h1>
    <script>
        function myFunction(){
            console.log(2+3);
        }
    </script>
</body>
  
</html>

Output:

Output of the Code in the Console

How to Call a JavaScript Function from Chrome Console ?

One can call a JavaScript Function from the Chrome Console. We will learn how can we call the function in the console that is written in JavaScript.

Similar Reads

Steps to call a JavaScript Function from Chrome Console

Open the Chrome Console...

Other Types of function calls

By Passing Arguments:...

Contact Us