javascript
JS 객체 object 모든 속성 삭제 delete
daeyun대윤
2023. 3. 12. 18:27
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