learn-javascript icon indicating copy to clipboard operation
learn-javascript copied to clipboard

Translation needed for existing languages

Open github-actions[bot] opened this issue 1 year ago • 0 comments

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

Visual Diff of Changes:

diff --git a/en/exercises/concatenation.md b/en/exercises/concatenation.md
index e35ae50..dc7c666 100644
--- a/en/exercises/concatenation.md
+++ b/en/exercises/concatenation.md
@@ -39,3 +39,6 @@ const icon = "👋";
 ### 💡 Hints:
 
 - Visit the [concatenation](../strings/concat.md) chapter of strings for more info about string concatenation.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/conditional-statements.md b/en/exercises/conditional-statements.md
index 3ff2399..2b7a239 100644
--- a/en/exercises/conditional-statements.md
+++ b/en/exercises/conditional-statements.md
@@ -23,3 +23,6 @@ Conditional logic is vital in programming as it makes sure that the program work
 ### 💡 Hints:
 
 - Visit the [conditional logic](../conditional/) chapter to understand how to use conditional logic and conditional statements.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/console.md b/en/exercises/console.md
index c055755..3b5053c 100644
--- a/en/exercises/console.md
+++ b/en/exercises/console.md
@@ -57,3 +57,6 @@ console.log(age === 50);
 
 * Visit the [variable](../basics/variables.md) chapter to understand more about variables.
 * Visit the [operators](https://javascript.sumankunwar.com.np/en/numbers/operators.html) page to know the possible operators you can use.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/constants.md b/en/exercises/constants.md
index 73c4c20..50f54dc 100644
--- a/en/exercises/constants.md
+++ b/en/exercises/constants.md
@@ -34,3 +34,6 @@ const VERSION = "1.2";
 ### 💡 Hints:
 
 - Visit the [Variables](../basics/variables.md) chapter for more info about const and also look for "_TypeError assignment to constant variable_" in search engines to learn a fix. 
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/fizzbuzz-problem.md b/en/exercises/fizzbuzz-problem.md
index da074d9..f14bb3c 100644
--- a/en/exercises/fizzbuzz-problem.md
+++ b/en/exercises/fizzbuzz-problem.md
@@ -42,3 +42,6 @@ The _FizzBuzz_ problem is one of the commonly asked questions, here one has to p
 ### 💡 Hints:
 
 * Visit the [loops](../loops/) chapter to understand how the loop works.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/functions.md b/en/exercises/functions.md
index 8f4612b..85fe4d9 100644
--- a/en/exercises/functions.md
+++ b/en/exercises/functions.md
@@ -18,3 +18,6 @@ A function is a block of code designed to perform a specific task and executed w
 ### 💡 Hints:
 
 - Visit the [functions](../functions/) chapter to understand functions and how to create them.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/get-the-titles.md b/en/exercises/get-the-titles.md
index 7ef6b55..afc3049 100644
--- a/en/exercises/get-the-titles.md
+++ b/en/exercises/get-the-titles.md
@@ -29,3 +29,5 @@ const books = [
 
 * Visit the [arrays](../arrays/) and [objects](../objects/) chapter to understand how the array and object work.
 
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/multiplication.md b/en/exercises/multiplication.md
index e7e494f..d931fb5 100644
--- a/en/exercises/multiplication.md
+++ b/en/exercises/multiplication.md
@@ -24,3 +24,6 @@ Here, we stored the product of `3 * 2` into a `resultingValue` variable.
 ### 💡 Hints:
 
 - Visit the [Basic Operators](../numbers/operators.md) chapter to understand the mathematical operations.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/objects.md b/en/exercises/objects.md
index 012b27f..a9a55a2 100644
--- a/en/exercises/objects.md
+++ b/en/exercises/objects.md
@@ -45,3 +45,6 @@ let family = {
 * Visit the [objects](../objects/) chapter to understand how the object work.
 * You can get `luckyNumbers` from each person object inside the family object.
 * Once you get each array just loop over it adding every element and then add each sum of the 3 family members.
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file
diff --git a/en/exercises/user-input-variables.md b/en/exercises/user-input-variables.md
index 66bad27..1adfe79 100644
--- a/en/exercises/user-input-variables.md
+++ b/en/exercises/user-input-variables.md
@@ -15,3 +15,6 @@ In JavaScript, we can take input from users and use it as a variable. One doesn'
 * The content of a variable is determined by the user's inputs. The `prompt()` method saves the input value as a string.
 * You will need to make sure that the string value is converted into an integer for calculations. 
 * Visit the [Basic Operators](../numbers/operators.md) chapter for the type conversion of `string` to `int`. 
+
+{% aceeditor compilerTitle="Try it!" %}
+{% endaceeditor %}
\ No newline at end of file

github-actions[bot] avatar Aug 13 '24 17:08 github-actions[bot]