Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
classwork_23
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Нұрасыл Қайратұлы
classwork_23
Commits
687488ee
Commit
687488ee
authored
Dec 12, 2023
by
Nurasyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
4 task
parent
5a1f669c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
20 deletions
+47
-20
index.js
JS/index.js
+47
-20
No files found.
JS/index.js
View file @
687488ee
...
...
@@ -42,23 +42,50 @@
const
initialList
=
[
'John'
,
'Jack'
,
'Harry'
,
'Mario'
,
'Link'
,
'Zelda'
,
'Bowser'
];
const
Host
=
{
guestList
:
[],
setGuestList
:
function
(
arr
)
{
for
(
let
i
=
0
;
i
<
arr
.
length
;
i
++
)
{
const
randomNum
=
Math
.
round
(
Math
.
random
()
*
100
);
if
(
randomNum
<
20
)
{
console
.
log
(
`
${
arr
[
i
]}
не очень.`
);
}
else
{
this
.
guestList
.
push
(
arr
[
i
]);
};
};
}
};
Host
.
setGuestList
(
initialList
);
console
.
log
(
Host
.
guestList
);
\ No newline at end of file
// const initialList = ['John', 'Jack', 'Harry', 'Mario', 'Link', 'Zelda', 'Bowser'];
// const Host = {
// guestList: [],
// setGuestList: function(arr) {
// for(let i = 0; i < arr.length; i++) {
// const randomNum = Math.round(Math.random() * 100);
// if(randomNum < 20) {
// console.log(`${arr[i]} не очень.`);
// } else {
// this.guestList.push(arr[i]);
// };
// };
// },
// showList: function() {
// return this.guestList;
// }
// };
// Host.setGuestList(initialList);
// let a = Host.showList();
// while(true) {
// const age = prompt("Возраст клиента");
// const clients = [];
// if(age === null) break;
// if(parseInt(age) < 18) {
// alert("гуляй");
// continue;
// };
// console.log("Продали");
// clients.push(age);
// };
const
listLetters
=
[];
const
currentLetter
=
"asd"
;
const
mystic
=
"__"
;
const
correct
=
"_s_"
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment