Skip to content

Lab2-Reusable #73

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 1 commit 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
2 changes: 1 addition & 1 deletion .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
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 = 'Illia';

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 = 2004;

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

const hello = null;
const hello = function(name) {
console.log('Hello, ' + 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) => {
let index = start;
const array = [];
for (index; index <= end; index++) {
array.push(index);
}
return array;
};

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

const rangeOdd = null;
const rangeOdd = (start, end) => {
let index = start;
const array = [];
for (index; index <= end; index++) {
if (index % 2) array.push(index);
}
return array;
};

module.exports = { rangeOdd };
15 changes: 11 additions & 4 deletions Exercises/6-calculate.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
'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 = null;
const calculate = () => {
const array = [];
for (let i = 0; i < 10; i++) {
const element = average(square(i), cube(i));
array.push(element);
}
return array;
};

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

const fn = null;
const fn = () => {
let obj1 = { name: 'Illia' };
const obj2 = { name: 'Ivan' };
obj1.name = 'wow';
obj2.name = 'cccp';
obj1 = { name: 'wonderful' };
};

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

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

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

const phonebook = null;
const phonebook = [
{ name: 'illia', phone: '+380970666481' },
{ name: 'misha', phone: '+380930132990' },
{ name: 'vanya', phone: '+380501070675' },
{ name: 'victor', phone: '+380674765177' },
];

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

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

const phonebook = null;
const phonebook = {
illia: '+380970666481',
misha: '+380930132990',
vanya: '+380501070675',
victor: '+380674765177',
};

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

module.exports = { phonebook, findPhoneByName };
Loading