Skip to content

Commit 288ed07

Browse files
Update promises.md
1 parent 751f0e9 commit 288ed07

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

promises/promises.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Promises in JavaScript
22

33
## Introduction
4-
Promises are a modern way to handle asynchronous operations in JavaScript. They represent a value that may be available now, later, or never. Promises help you write cleaner, more readable code compared to callbacks.
4+
Promises are a modern way to handle asynchronous operations in JavaScript. They were natively introduced in **ECMAScript 2015 (ES6)**. Before this, developers relied on third-party libraries like **Bluebird** and **Q**.
5+
6+
Promises represent a value that may be available now, later, or never. They help you write cleaner, more readable code compared to callbacks.
57

68
---
79

0 commit comments

Comments
 (0)