본문 바로가기

javascript

JS 객체 object 모든 속성 삭제 delete

 

See the Pen obj TEST by keepgoing-Noah (@keepgoing-noah) on CodePen.

https://stackoverflow.com/questions/19316857/removing-all-properties-from-a-object

 

Removing all properties from a object

I have this Javascript object. req.session In my code I add properties to this object. These properties can be other objects, arrays, or just plain strings. req.session.savedDoc = someObject; ...

stackoverflow.com

Object.keys(object).forEach(key => delete object[key]);

 

728x90
300x250