Thursday, 16 June 2016

Automatically Run a JavaScript Function without calling A function

Solution:

Please use this code it will run dynamically

(
(
Function SelfPrint()
{
Console.log("Hello World");
}
)
());

No comments:

Post a Comment