Skip to content

Reusable Tasks #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"linebreak-style": [
"error",
"unix"
"windows"
],
"quotes": [
"error",
Expand Down Expand Up @@ -267,10 +267,12 @@
},
"overrides": [
{
"files": ["1-let.js"],
"files": [
"1-let.js"
],
"rules": {
"prefer-const": "off"
}
}
]
}
}
2 changes: 1 addition & 1 deletion Exercises/1-let.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

let name = undefined;
let name = 'Alex';

module.exports = { name };
2 changes: 1 addition & 1 deletion Exercises/2-const.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

const year = undefined;
const year = 1992;

module.exports = { year };
2 changes: 1 addition & 1 deletion Exercises/3-hello.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

const hello = null;
const hello = name => console.log(`Добро пожаловать ${name}`);

module.exports = { hello };
9 changes: 8 additions & 1 deletion Exercises/4-range.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
'use strict';

const range = null;
const range = (start, end) => {
const rangeOfNum = [];
for (let i = start; i <= end; i++) {
rangeOfNum.push(i);
}

return rangeOfNum;
};

module.exports = { range };
13 changes: 12 additions & 1 deletion Exercises/5-range-odd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
'use strict';

const rangeOdd = null;
const rangeOdd = (start, end) => {
const rangeOddNum = [];
for (let i = start; i <= end; i++) {
const oddNum = Math.abs(i) % 2 === 1;
if (oddNum) {
rangeOddNum.push(i);
}
}

return rangeOddNum;
};


module.exports = { rangeOdd };
17 changes: 13 additions & 4 deletions Exercises/6-calculate.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
'use strict';

const square = null;
const square = x => x * x;

const cube = null;
const cube = x => x ** 3;

const average = null;
const average = (a, b) => (a + b) / 2;

const calculate = () => {
const result = [];
for (let i = 0; i <= 9; i++) {
const aveResult = average(cube(i), square(i));
result.push(aveResult);
}

return result;
};

const calculate = null;

module.exports = { square, cube, average, calculate };
11 changes: 10 additions & 1 deletion Exercises/7-objects.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
'use strict';

const fn = null;
const fn = () => {
const obj1 = { name: 'Саша' };
// eslint-disable-next-line prefer-const
let obj2 = { name: 'Ксюша' };

obj1.name = 'Александр';
obj2.name = 'Ксения';

obj2 = { name: 'Ксю' };
};

module.exports = { fn };
2 changes: 1 addition & 1 deletion Exercises/8-create.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

const createUser = null;
const createUser = (name, city) => ({ name, city });

module.exports = { createUser };
11 changes: 9 additions & 2 deletions Exercises/9-array.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
'use strict';

const phonebook = null;
const phonebook = [
{ name: 'Marcus Aurelius', phone: '+380445554433' },
{ name: 'Alex White', phone: '+380445554434' }
];

const findPhoneByName = null;
const findPhoneByName = n => {
for (const { name, phone } of phonebook) {
if (name === n) return phone;
}
};

module.exports = { phonebook, findPhoneByName };
7 changes: 5 additions & 2 deletions Exercises/a-hash.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
'use strict';

const phonebook = null;
const phonebook = {
'Marcus Aurelius': '+380445554433',
'Alex White': '+380445554434'
};

const findPhoneByName = null;
const findPhoneByName = name => (phonebook[name]);

module.exports = { phonebook, findPhoneByName };