Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. const arrayTest = [
  2.  
  3.     {name: 'Silver', isMarried: 'Yes'},
  4.  
  5.     {name: 'Kevin', isMarried: 'Yes'},
  6.  
  7.     {name: 'Happy', isMarried: 'No'},
  8.  
  9.     {name: 'Xan', isMarried: 'No'}
  10.  
  11. ]
  12.  
  13. function isMarried(status) {
  14.  
  15.     return status === 'Yes'
  16.  
  17. }
  18.  
  19. const check = arrayTest.filter(el => isMarried(el.isMarried))
  20.  
  21. console.log(check)