jQuery
class JQuery {selector: stringlength: numberconstructor(selector)}// 不用工厂模式const $div = new JQuery('div);const $p = new JQuery('p');// 用工厂模式window.$ = selector: string => new JQuery(selector);const $div = $('div');const $p = $('p');
React createElement


// 工厂函数function createElement() {return VNode();}// 非工厂new VNode();new VNode();new VNode();
