sumn2u / learn-javascript

A book that teaches JavaScript 📗💻📖
https://javascript.sumankunwar.com.np
Apache License 2.0
895 stars 132 forks source link

Translation needed for existing languages #222

Open github-actions[bot] opened 2 months ago

github-actions[bot] commented 2 months ago

@sumn2u has made changes on the original english version of the book (PR #221)

Visual Diff of Changes:

diff --git a/en/functions/closures.md b/en/functions/closures.md
index acd1fd6..8cc3b6a 100644
--- a/en/functions/closures.md
+++ b/en/functions/closures.md
@@ -3,8 +3,6 @@ chapter: 8
 description: Closures are a JavaScript concept that allows functions to access and remember variables from their containing scope, even after the outer function has finished running. They're vital for data encapsulation, private variables, and various design patterns in JavaScript. Closures enhance code flexibility and maintainability.
 ---

----
-
 # Closures

 In JavaScript, closures are a fundamental and powerful concept that plays a crucial role in the language. Understanding closures is essential for writing clean, efficient, and maintainable code. In this chapter, we'll explore what closures are, how they work, and why they are important in JavaScript.