I mean, Object-B is included in Object-A when all the attributes of Object-B are included in object-A, and its values ββare the same in object-A.
var obj_b={a:1,d:3} var obj_a={a:1,b:22,c:33,d:3}
My question is:
Does ES6 / ES7 have the built-in API more elegant and shorter for this ?
For example, to extend an object from a source, did ES6 bring Object.assign(o1,o2) ?
Is there something like Object.isInclude(o1,o2) ?
javascript object ecmascript-6
Abdennour toumi
source share