JSFiddle - React, Tailwind, and code Playground

by Rahsheen Porter

JavaScript

const object_of_settings = {
     showAccount: 'password email delete account',
     showAppearance:'theme dark light font size small large',
     showNotification: 'enable disable notification',
     showSupport: 'faq f.a.q email contact help',
    }

    var filtered = Object.entries(object_of_settings).filter(([key, value]) => value.includes("ss")); 
    console.log(filtered);