Skip to content
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

Hw 3 #3

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Hw 3 #3

wants to merge 3 commits into from

Conversation

VladyslavMartynov
Copy link
Owner

No description provided.

// Вывести в консоль результат
// Привести во вторую степерь можно через оператор **. 3 ** 2 = 9
const num = Number(prompt('Enter your number'));
alert (num);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alert(num);


const arrFilter = arr => {
const filterArr = arr.filter(el => el > 2 && el < 20);
const sum = filterArr.reduce((acc,item) => acc + item);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

const sum = filterArr.reduce((acc,item) => acc + item);


const flatArr = arr.flat();
const filteredData = flatArr.filter(el => typeof el === 'number' && el % 2 === 0);
const totalSum = filteredData.reduce((acc, item) => acc + item);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

const totalSum = filteredData.reduce((acc, item) => acc + item);

const value = prompt('Enter your value');

const addPropeties = (key,value,object) => typeof object === 'object' && !object.hasOwnProperty(key)
? { ...object , [key]:value} : 'Уже есть';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

что с форматированием?

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prettier решил попробывать , потом понял что не очень идея и отключил, сейчас исправлю оформление!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants