window.sum=0;
window.ExecuteJavascriptString = function()
{
var data = "var a=3;"+
"var b=4;"+
"sum=a+b;"+
"ShowResult()";
setTimeout(data, 1);
}
ExecuteJavascriptString();
window.ShowResult = function(){
console.log(sum);
alert(sum);
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)