function Fn(){
}
const fn=new Fn()//Fn是构造函数,fn是实例对象
console.log(Fn.prototype);//Fn是函数对象,带了. 才会有方法
Fn.call({});//Fn是函数对象
$("#test");//jquery函数
$.get("/test");//jquery函数对象
function Fn(){
}
const fn=new Fn()//Fn是构造函数,fn是实例对象
console.log(Fn.prototype);//Fn是函数对象,带了. 才会有方法
Fn.call({});//Fn是函数对象
$("#test");//jquery函数
$.get("/test");//jquery函数对象