function sayHelloThuy(dataInput, callBack) {
var content = dataInput + ' say hello!';
document.write(content);
callBack(content);
}
sayHelloThuy('Thuy', function(data){
console.log(data);
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.