JSFiddle - React, Tailwind, and code Playground
by booktu8
JavaScript
function abs(){
console.log('第一个函数');
}
/* 具名函数 */
var abs1=function(x1,x2){
console.log('第二个函数');
};
abs();
abs1();
by booktu8
function abs(){
console.log('第一个函数');
}
/* 具名函数 */
var abs1=function(x1,x2){
console.log('第二个函数');
};
abs();
abs1();