标签:for || cti class func undefined span return UNC
var mix = function(r, s, ov) { if (!s || !r) return r; if (ov === undefined) ov = true; for (var p in s) { if (ov || !(p in r)) { r[p] = s[p]; } } return r; }; mix({name:123},{age:18})
标签:for || cti class func undefined span return UNC
原文地址:https://www.cnblogs.com/yangsg/p/11274495.html