I'm already aware that there's a similar question about this but seems cant make it to work.
Please let me know what needed to do.
example: ( where the string "test" is the function name )
<script>
function test(){
alert("Hello World");
}
//is this the right way to call it?
window["test"]();
</script>
//no eval pls