diff --git a/Chapter_1/Practice/Js/README.md b/Chapter_1/Practice/Examples/Example_JS.md
similarity index 98%
rename from Chapter_1/Practice/Js/README.md
rename to Chapter_1/Practice/Examples/Example_JS.md
index 0e6dd89..d5965d3 100644
--- a/Chapter_1/Practice/Js/README.md
+++ b/Chapter_1/Practice/Examples/Example_JS.md
@@ -61,12 +61,6 @@ Félictation, vous savez dès à présent déclarer des constantes en **javascr
---
-#### Exercises
-
-##### Comming soon...
-
----
-
#### Différence `var` vs `let`
Comme vous avez pu le constater, il existe deux **mots-clés** pour déclarer une variable, il existe **`let`** et **`var`**. Il existe une subtilité entre les deux qui se trouvent dans la porté d'accessibilité de la variable.
diff --git a/Chapter_1/Practice/php/README.md b/Chapter_1/Practice/Examples/Example_PHP.md
similarity index 98%
rename from Chapter_1/Practice/php/README.md
rename to Chapter_1/Practice/Examples/Example_PHP.md
index 48c6429..72e171c 100644
--- a/Chapter_1/Practice/php/README.md
+++ b/Chapter_1/Practice/Examples/Example_PHP.md
@@ -49,8 +49,3 @@ Le **php** permet l'utilisa
> La déclaration se passe dans le fonction **`define()`**, la fonction prend en *premier paramètre* le **nom de constante** qui doit respecter les mêmes règles les [variables](#example-variables). En *second paramètre*, vous mettrais la valeur que vous souhaitez **attribuer** à la constantes.
Pour plus d'exemples sur les constantes, vous pouvez vous rendre sur les [exemples en code](./constantes.php).
-
----
-#### Exercices
-
-##### Comming soon...
\ No newline at end of file
diff --git a/Chapter_1/Practice/Js/variables.js b/Chapter_1/Practice/Js/variables.js
deleted file mode 100644
index f792c90..0000000
--- a/Chapter_1/Practice/Js/variables.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Vous trouverez ici, des exemples sur les variables
-
-let str = "my string";
-let float = 1.64;
-let int = 4;
-
-var bool = true;
-var arr = [1, 2, 3];
-
-console.log(str); // Renvoi my string
-console.log(float); // Renvoi 1.64
-console.log(int); // Renvoi 4
-console.log(bool); // Renvoi true ou 1
-console.log(arr); // Renvoi [1, 2, 3]
-
-
-// Essayons de réutiliser un nom de variables
-
-let str = "new string";
-
-console.log(str); // Renvoi new string
-
-// Ceci est possible car nous utilisons une variables
-// Vous pouvez aussi changer la valeur d'un variable de la sorte
-
-str = "new string";
-
-// Pour aller plus loin avec les variables
-
-function add(a, b) {
- if (a && b) {
- let result = a + b;
- }
-
- console.log(result); // Ne renvoie rien car let a une porté de bloc
-}
-
-function sub(a, b) {
- if (a && b) {
- var result = a - b;
- }
-
- console.log(result); // Renvoi la valeur de a - b, car var a une porté de fonction
-}
diff --git a/Chapter_1/Practice/php/variables.php b/Chapter_1/Practice/php/variables.php
deleted file mode 100644
index 5a36c39..0000000
--- a/Chapter_1/Practice/php/variables.php
+++ /dev/null
@@ -1,22 +0,0 @@
-
\ No newline at end of file
diff --git a/Chapter_3/Practice/Examples/Example_Js.md b/Chapter_3/Practice/Examples/Example_Js.md
new file mode 100644
index 0000000..a511b11
--- /dev/null
+++ b/Chapter_3/Practice/Examples/Example_Js.md
@@ -0,0 +1,67 @@
+