The 'Object.seal' method in JavaScript is used to Prevent new properties from being added to an object while allowing Modification of existing properties. It also marks all existing properties as non-configurable, meaning their descriptors cannot be changed, nor can they be deleted.