True if the response has a result that is neither null nor undefined, false otherwise
Example
constresponse = awaitsomeBridgeMethod(); if (isSuccess(response) && hasResult(response)) { // response.result is guaranteed to be defined console.log('Result:', response.result); }
Type guard to check if a JSBridge response has a defined result (not null or undefined).