<script>
/* 需要写在本子上的 */
// function $ajax({
// success
// }){
// var res = "hello world"
// success(res);
// }
// $ajax({
// success:res=>{
// console.log(res)
// }
// })
function $ajax(success){
var a = "hello world"
success(a);
}
$ajax(res=>{
console.log(res)
})
</script>