JSFiddle - React, Tailwind, and code Playground

by codebazz

JavaScript

function test2(ex) {
    alert(ex);
};

test2(7);
var str1 = "test2";
eval(str1+"("+7+")");

var str2 = "test2";
eval(str2+"("+8+")");