Skip to content

LABS 1-9, a #60

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 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 = 'Sasha';

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

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(`Hi ${name}!`);

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

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

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

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

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 arr = [];
for (let i = 0; i <= 9; i++) {
const av = average(square(i), cube(i));
arr.push(av);
}
return arr;
};

module.exports = { square, cube, average, calculate };
13 changes: 11 additions & 2 deletions 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 objOne = { name: 'One' };
let objTwo = { name: 'Two' };
objOne.name = 'something';
objTwo.name = 'something too';
//objOne = {other: 3} ;
objTwo = { otherTwo: 2 };
/*objOne - const => другой объект присвоить нельзя,
изменять поля можно у обоих объектов*/
};
fn();
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', phone: '+380445554433' },
{ name: 'Vasya', phone: '+38454545454' },
];

const findPhoneByName = null;
const findPhoneByName = name => {
for (const rec of phonebook) {
if (rec.name === name) return rec.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: '+380445554433',
Vasya: '+38454545454',
};

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

module.exports = { phonebook, findPhoneByName };