How to turn a String into a JavaScript function call?


To turn a string into a JavaScript function call, try to run the following code

Example

Live Demo

<html>
   <body>
      <script>
         function myFunction(argument) {
            alert('My function ' + argument);
         }
         functionName = 'myFunction';
         window[functionName]('is working.');
      </script>
   </body>
</html>

Updated on: 03-Oct-2019

331 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements