I'd like to know IF a value is missing which one is missing.
Array1: You have these values at the moment
['cloud:user', 'cloud:admin']
Array2: You need to have these values in order to continue
['cloud:user', 'cloud:admin', 'organization:user']
Current method which returns true or false. But I'd like to know IF a value is missing which one is missing. For example: 'organization:user'. If nothing is missing return true.
let authorized = roles.every(role => currentResourcesResult.value.includes(role));