array has object with property js
myArray.some(obj => obj.property === 'value')
// returns true or falsearray has object with property js
myArray.some(obj => obj.property === 'value')
// returns true or falsejavascript include property array object
const data = [{ name: 'dendi', age: 23 }, { name: 'dhani' }]
const result = data.filter((v, i) => {
	if (!Object.keys(v).includes('age')) {
		Object.defineProperty(v, 'age', {
			value: 25,
			writeable: true,
			enumerable: true
		})
	}
	return v
})Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
