first comit
This commit is contained in:
7
corrections/39-es6-modules-export.js
Normal file
7
corrections/39-es6-modules-export.js
Normal file
@@ -0,0 +1,7 @@
|
||||
export const additionner = (a, b) => {
|
||||
return a + b;
|
||||
};
|
||||
|
||||
export const multiplier = (a, b) => {
|
||||
return a * b;
|
||||
};
|
||||
Reference in New Issue
Block a user