A Promise is an object representing a value that may not be available yet — the eventual result of an asynchronous operation. त्यांचे तीन state आहेत:
- pending — प्रारंभिक, अद्याप निश्चित नाही।
- fulfilled — यशस्वीपणे पूर्ण (मूल्य आहे)।
- rejected — अपयशी (कारण/त्रुटी आहे)।
जेव्हा ते settle व्हायला हवे (fulfilled किंवा rejected) तर ते immutable — पुन्हा बदलू शकत नाही।
js
()
.( res.())
.( (user))
.( (err))
.( ());
