Rest API - API Documentation
Given this API request code snippet, what will be the output if the token is missing?
fetch('https://api.example.com/data', {
headers: { 'Authorization': 'Bearer ' }
})
.then(response => response.status)
.then(status => console.log(status));