local Storage Set Array Item And Get Array Item

 userIsAdmin() {

// Set item (Keep in Local)

 localStorage.setItem('User', JSON.stringify("UID":"admin","FullName":"Maruf","Email":"example@example.com","IsSuperAdmin":true))   

// Get from Local 

const getUser = localStorage.getItem('User');

    let jsonFormat = JSON.parse(getUser);

    let userType = jsonFormat.IsSuperAdmin;

    if (userType === true){

      return true;

    }

    else {

      return false;

    }

  }