How to check if object includes substring in JavaScript

Objects
By Jad Joubran · 
Last updated Jan 28, 2018
const person = {
  first_name: "Joan",
  last_name: "Leon",
  twitter: "@nucliweb"
};

Object.values(person)
  .toString()
  .includes("web");
true
Object.values on MDN