Select the true statements from the following: A Future is an object A Future holds a value that may become available at a later point in time We can complete a promise only once All of the above code example
Example: making promises in js
getData()
.then(data => console.log(data))
.catch(error => console.log(error));