Menu

gitpiper

isPlainObject javascript Code Snippet in 2024

typeobjectintermediate

Last Updated: 21 April 2024

Checks if the provided value is an object created by the Object constructor.

  • Check if the provided value is truthy.
  • Use typeof to check if it is an object and Object.prototype.constructor to make sure the constructor is equal to Object.
const isPlainObject = val => !!val && typeof val === 'object' && val.constructor === Object;
isPlainObject({ a: 1 }); // true isPlainObject(new Map()); // false

javascript snippet similar to isPlainObject For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️