JSFiddle - React, Tailwind, and code Playground

by CME64

JavaScript

var x = function fn(){return 'fn';};
function fn1(){return 'fn1';};
console.log(x.prototype);
console.log(fn1.prototype);
console.log(x());
console.log(fn1());
console.log(function(){return 'func';}.prototype);
console.log((function(){return 'func';})());