-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: main
Are you sure you want to change the base?
Hw 3 #3
Conversation
task_3/js/main.js
Outdated
// Вывести в консоль результат | ||
// Привести во вторую степерь можно через оператор **. 3 ** 2 = 9 | ||
const num = Number(prompt('Enter your number')); | ||
alert (num); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alert(num);
task_3/js/main.js
Outdated
|
||
const arrFilter = arr => { | ||
const filterArr = arr.filter(el => el > 2 && el < 20); | ||
const sum = filterArr.reduce((acc,item) => acc + item); |
There was a problem hiding this comment.
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);
task_3/js/main.js
Outdated
|
||
const flatArr = arr.flat(); | ||
const filteredData = flatArr.filter(el => typeof el === 'number' && el % 2 === 0); | ||
const totalSum = filteredData.reduce((acc, item) => acc + item); |
There was a problem hiding this comment.
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);
task_3/js/main.js
Outdated
const value = prompt('Enter your value'); | ||
|
||
const addPropeties = (key,value,object) => typeof object === 'object' && !object.hasOwnProperty(key) | ||
? { ...object , [key]:value} : 'Уже есть'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
что с форматированием?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prettier решил попробывать , потом понял что не очень идея и отключил, сейчас исправлю оформление!
No description provided.