-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.js
542 lines (484 loc) · 22.7 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
// !! listOfWords is in wordlist.js, hebWords is in hebwords.js !! //
////////* Variables: *///////
// did user win todays game:
let win = false;
// did user finish todays game (win or lose):
let endOfGameToday = false;
//which try am i in?
let rowCount = 1;
//wordCount - which try am i after word was guessed:
let wordCount = 0;
//saves the letters in a string until word is sent:
let currentWord = '';
//array to save the colors of guessed words' letters
let answersColors = [];
//array to save the letter of guessed words
let answersLetters = [];
//numOfWordale is calculated later by the difference from today to the launch of wordale
let numOfWordale = 0;
// the launch date of wordale
const startDate = new Date(2022, 0, 11);
const summerClockStartDate = new Date(2022,2,26)
//today:
let today = new Date();
//word index is the numOfWordale calculated later on
let pickedWord = pickWord();
//set the timer for next wordale:
countDownTimer();
//load statistics:
let guessDistribution;
function pickWord() {
//today = new Date();
var differenceInTime = today.getTime() - startDate.getTime();
// var differenceInTime = today.getTime() - summerClockStartDate.getTime();
// To calculate the no. of days between two dates
var differenceInDays = Math.floor(differenceInTime / (1000 * 3600 * 24)); //added 74 since it screwed the 1 hour difference between gmt+3 and gmt+2;
numOfWordale = differenceInDays;
// var differenceInDays = Math.floor(differenceInTime / (1000 * 3600 * 24)) + 74; //added 74 since it screwed the 1 hour difference between gmt+3 and gmt+2;
return listOfWords[differenceInDays];
}
function clickLetter(value) {
if(endOfGameToday!=true){
currentRow = document.getElementById(`row${rowCount}`)
for (let i = 1; i <= 5; i++) {
let tile = `tile${rowCount}${i}`;
if (document.getElementById(`${tile}`).innerHTML == '') {
value = changeToFinal(value);
currentWord += value;//add letter to currentWord
document.getElementById(tile).setAttribute('data-animation', 'pop');
document.getElementById(tile).style.border = "solid rgb(34, 34, 34)";
document.getElementById(tile).innerHTML = value;//print letter in Tile
break;
}
}
}
}
function changeToFinal(value) {
if (currentWord.length === 4) {
if (value === 'פ') { value = 'ף'; };
if (value === 'נ') { value = 'ן'; };
if (value === 'מ') { value = 'ם'; };
if (value === 'כ') { value = 'ך'; };
if (value === 'צ') { value = 'ץ'; };
}
return value;
}
function sendWord() {
if (win === false) {
let x = checkSpell(currentWord);
if (currentWord.length === 5) {
if (checkSpell(currentWord)) {
if (wordCount < 7) {
wordCount++;
}
compareWords();//compares words and does the rest fills tiles accordingly
rowCount++;
answersLetters.push(currentWord);//keeps the word in answers array (not the colors)
saveUserData();//saves answers to localStorage
currentWord = '';//in order to start new word at next line
} else {
animateWakeUp();
openNotification('המילה לא קיימת');
}
}
else { //checks if there are enough letters
animateWakeUp();
openNotification("אין מספיק אותיות")
}
}
}
function animateWakeUp() {
for (i = 1; i <= 5; i++) {
setAnimation(i, 'wakeup');
function setAnimation(k, animation) {
document.getElementById(`tile${rowCount}${i}`).classList.add(animation)
};
}
setTimeout(function () {
for (j = 1; j <= 5; j++) {
document.getElementById(`tile${rowCount}${j}`).setAttribute('data-animation','idle');
document.getElementById(`tile${rowCount}${j}`).classList.remove('wakeup');}
}, 800);
}
function openNotification(message) {
document.getElementById('notify').style.height = "5%";
document.getElementById('notify').innerHTML = message;
setTimeout(function () {
document.getElementById('notify').style.height = "0%";
}, 2000);
}
function openNotificationLong(message, bool) {
document.getElementById('notify').style.height = "5%";
if (bool === true) {
document.getElementById('notify').style.backgroundColor = "rgb(98, 159, 91)";
}
document.getElementById('notify').innerHTML = message;
}
function openShareNotificationLong() {
document.getElementById('notify2').style.height = "5%";
document.getElementById('shareButton').style.visibility = "visible";
}
function eraseWord() {
currentWord = '';
if (wordCount <= rowCount) {
for (let i = 1; i <= 5; i++) {
let tile = `tile${rowCount}${i}`;
document.getElementById(tile).innerHTML = '';
document.getElementById(tile).setAttribute('data-animation', 'idle');
document.getElementById(tile).style.border = "solid rgb(212, 212, 212)";
}
}
}
function eraseLetter() {
if (currentWord != '') {
let tile = `tile${rowCount}${currentWord.length}`;
document.getElementById(tile).innerHTML = '';
document.getElementById(tile).setAttribute('data-animation', 'idle');
document.getElementById(tile).style.border = "solid rgb(212, 212, 212)";
currentWord = currentWord.substring(0, currentWord.length - 1);
}
// setInterval(removeAnimation('wakeup'),5000);
// function removeAnimation(animation){
// for (i=1;i<=5;i++){
// document.getElementById(`tile${rowCount}${i}`).setAttribute('data-animation','idle');
// document.getElementById(`tile${rowCount}${i}`).classList.remove(animation);
// }
// };
}
function compareWords() {
let answer = [];
let newWord = '';
let greenIndices = [];
let yellowIndices = [];
let greyIndices = [];
let usedYellowIndices = [];
for (i = 0; i <= 4; i++) {
//if letter exists in place:
if (compareLetters(currentWord[i], pickedWord[i])) {
greenIndices.push(i);
} else {
newWord += pickedWord[i];
}
}
for (i = 0; i <= 4; i++) {
if (!greenIndices.includes(i)) {
for (j = 0; j < newWord.length; j++) {
if (compareLetters(currentWord[i], newWord[j])) {
yellowIndices.push(i);
newWord = newWord.slice(0, j) + newWord.slice(j + 1);
break;
}
}
}
}
for (i = 0; i <= 4; i++) {
if (!yellowIndices.includes(i) && !(greenIndices.includes(i))) { //if letter exists anywhere else:
greyIndices.push(i);
//
}
}
//splice used green ones from yelloweIndices:
for (i = 0; i < greenIndices.length; i++) {
if (yellowIndices.includes(greenIndices[i])) {
let x = yellowIndices.indexOf(greenIndices[i]);
yellowIndices.splice(x, 1);
}
}
//color grey indices:
for (i = 0; i < greyIndices.length; i++) {
document.getElementById(`tile${wordCount}${greyIndices[i] + 1}`).setAttribute('data-animation', 'flip-in');
document.getElementById(`tile${wordCount}${greyIndices[i] + 1}`).style.backgroundColor = "rgb(109, 113 ,115)";//gray
document.getElementById(`tile${wordCount}${greyIndices[i] + 1}`).style.border = "solid rgb(109, 113 ,115)";//gray border
paintFinalLetter(currentWord[greyIndices[i]], "rgb(109, 113 ,115)");
answer.splice(greyIndices[i], 0, '⬜');
}
//color yellow indices:
for (i = 0; i < yellowIndices.length; i++) {
document.getElementById(`tile${wordCount}${yellowIndices[i] + 1}`).setAttribute('data-animation', 'flip-in');
document.getElementById(`tile${wordCount}${yellowIndices[i] + 1}`).style.backgroundColor = "rgb(194, 170, 82)";//yellow
document.getElementById(`tile${wordCount}${yellowIndices[i] + 1}`).style.border = "solid rgb(194, 170, 82)";//yellow border
paintFinalLetter(currentWord[yellowIndices[i]], "rgb(194, 170, 82)");
answer.splice(yellowIndices[i], 0, '🟨');
}
//color green indices on top of all else:
for (i = 0; i < greenIndices.length; i++) {
document.getElementById(`tile${wordCount}${greenIndices[i] + 1}`).setAttribute('data-animation', 'flip-in');
document.getElementById(`tile${wordCount}${greenIndices[i] + 1}`).style.backgroundColor = "rgb(98, 159, 91)";//green
document.getElementById(`tile${wordCount}${greenIndices[i] + 1}`).style.border = "solid rgb(98, 159, 91)";//green border
paintFinalLetter(currentWord[greenIndices[i]], "rgb(98, 159, 91)");
answer.splice(greenIndices[i], 0, '🟩');
}
answer = answer.reverse();
answersColors.push(answer);
// color text white
document.getElementById(`row${wordCount}`).style.color = "white";
//if sentWord is correct display final message and update win:
if (greenIndices.length === 5 || wordCount === 6) {
win = true;
endOfGameToday = true;
let winMessage = pickMessage();
openNotificationLong(winMessage, true);
openShareNotificationLong();
}
//if ended and lost:
if (wordCount === 6 && greenIndices.length != 5) {
endOfGameToday = true;
let message = `המילה היא ${pickedWord} `;
openNotificationLong(message, false);
}
}
function pickMessage() {
let messageArray = [];
if (wordCount === 1) {
messageArray = ['גאוני', 'אמאל׳ה הצלחת מהר', '?די נו, תוך ניחוש', 'תוצאה מוגזמת', '!!!טירוף', 'שיחקת מדהים', 'יש לך מוח עצום', 'תוצאה מפחידה', '?וואו. תוך ניחוש. רימית', '?מי זה? אבשלום קור', 'אחד מי יודע? את/ה', 'מגניב מדי בשביל בית ספר', '?יש לך את זה ביותר מהר', 'פששש, כבוד', 'פתרת מהר מדי', 'בפוקס הראשון','ניחוש ראשון זה לא צחוק','ציפור אחת במכה אחת','?איך הבאת את זה כל כך מהר','בטח גם עברת טסט ראשון','?הניחשת וגם הצלחת','מדובר בהצלחה מסחררת']
}
if (wordCount === 2) {
messageArray = ['נסכם את ההצלחה בשתי מילים: יופי טופי','נולדת לוורדל׳ה','וורדל׳ה מודה לך על משחק מופתי','טובים השניים מן האחד (ניחושים כאילו)', 'גאוני', 'אמאל׳ה הצלחת מהר', 'אחלה תוצאה שבעולם', 'נראה שהלך מדהים', '!!!טירוף', 'שני ניחושים? קטונתי', 'יש לך מוח ענק', 'תוצאה מפחידה', 'וואו פשוט וואו', 'בגלגול הקודם היית מילונאי', "שני ניחושים יצאו לדרך בים בם בום", 'אין לנו מה לומר, הצלחת', 'מזל של מתחילים', 'הלכת אול אין וזה השתלם אחושקשוקי', 'לא רואים אבל אני משתחווה','מוצלח, מאוד מאוד מוצלח']
}
if (wordCount === 3) {
messageArray = ['אני גאה בך', 'דיייי איזו תוצאה', 'ניחשת את המילה מהר', 'שלושה ניחושים? וואו', 'משחק מדהים שלך', 'ניחושים ופיגוזים', 'משחק הבא עלינו', 'בליגה של הגדולים/גדולות', '!טוב מאוד', 'פשוט מעולה', 'התרשמנו לטובה ממך', 'בואנה אחלה תוצאה', 'הצלחת בגדול, הפרס: מילה חדשה מחר', 'ידענו שתצליח/י אבל הפתעת','משלושה (ניחושים) יוצא אחד','שלושה ניחושים והכל יופי','בניחוץ׳ הצ׳ליצ׳י','שלושה ניחושים זה בגבוה']
}
if (wordCount === 4) {
messageArray = ['הצלחתך הצלחתינו', 'פשששש','לא רע בכלל','פשוט אחלה תוצאה','סחתיין עליך', 'יופי יופי יופי', 'כפיים לך, הצלחת', 'נראה לי שיש פה ניחוש מעולה', 'נתת בראש', 'אחלה תוצאה שבעולם', 'עם התמדה מגיעים להכל', 'פתרת כמו גדול/ה', 'אחלה בחלה', 'יופי טופי', 'משחק טוב כל הכבוד', 'שיחקת מעולה', 'נהדר ומצוין ואחלה ויופי', "פששש ממש סוס ארבעה",'כבוד הולך אליך על הפתירה', 'בניחוש הרביעי!!! יפה', 'ארבע זה מספר טיפולוגי', 'כנגד ארבעה ניחושים דיברה המילה']
}
if (wordCount === 5) {
messageArray = ['ולחשוב שמישהו פקפק בך', 'לא רע', 'יפה.. קצת חששנו אבל יפה', 'יששש הצלחת', 'הידד זה עבד לך בסוף', 'אז בסוף ניחשת נכון', 'נלחצנו לרגע', 'נפלת 4 פעמים, אבל בסוף קמת כמו גדול/ה', 'בסדר, אז הצלחת. יופי באמת', 'הצלחת, אמא גאה בך', 'שיחקת יפה מאוד', 'יופייייי', 'ועל זה נאמר - תיסלם', 'זה שלא ויתרת זה כבר משהו','שמת את האותיות במקום ובום הצלחה', 'משחק אגדה זה היה']
}
if (wordCount === 6) {
messageArray = ['וואו נלחצנו לרגע, כל הכבוד', 'שניה לפני הנפילה', 'הניחוש הגואל!!! כל הכבוד', 'מי חשב שלא תצליח/י? לא אנחנו', 'פאק נפל לנו הלב לתחתון. מזל. כל הכבוד', '!!!ניחוש אחרון?? אשכרה', 'מדובר בגול בדקה התשעים', 'ידענו שלא תוותר/י', 'אין עליך בעולם, התמדה זה הסוד', '.פאק זה היה קרוב', 'גדול!!! כמעט הפסדת ואז בסוף - לא', 'מברוק', 'אחלה את/ה תאמין/י לי', 'וואי וואי לא הימרתי שזה יעבוד', 'פששש, חזק', '.אין לי מילים. תרתי משמע', 'ממש ני-חוש שישי', 'פעם שישית גלידה, סתם לא', '..יפה! כלומר, נחמד', 'אה הצלחת בסוף? טוב', 'נו רואה? בסוף זה השתלם', 'מילה שלי שהצלחת']
}
randIndex = Math.floor(Math.random() * (messageArray.length));
return messageArray[randIndex]
}
function checkSpell(word) {
let wordExists = false;
splitWordsHebrew = hebWords.split(' ');
for (i = 0; i < splitWordsHebrew.length; i++) {
if (splitWordsHebrew[i] === (word)) {
wordExists = true;
break;
}
}
return wordExists;
};
function paintFinalLetter(letter, color) {
if (letter === 'ן') letter = 'נ';
if (letter === 'ם') letter = 'מ';
if (letter === 'ץ') letter = 'צ';
if (letter === 'ף') letter = 'פ';
if (letter === 'ך') letter = 'כ';
document.getElementById(letter).style.backgroundColor = color;
document.getElementById(letter).style.color = "white";
}
function shareResults() {
let shareResult = `וורדל\'ה # ${numOfWordale}` + "\n";
shareResult += `נסיון ${wordCount} מתוך 6` + "\n";
for (i = 0; i < answersColors.length; i++) {
let tempAnswer = answersColors[i].toString();
const result = tempAnswer.replaceAll(",", "");
shareResult = shareResult + result + "\n";
}
shareResult = shareResult + "\n" + "וורדל בעברית:" + "\n" + "https://yairhasfari.github.io/wordale";
navigator.clipboard.writeText(shareResult);
// let shareButton = "<input id=\"shareButton\" onclick=\"shareResults()\" value=\"תוצאות הועתקו ללוח\">"
// document.getElementById('notify2').innerHTML = shareButton;
document.getElementById("shareButton").innerHTML = "תוצאות הועתקו ללוח";
}
function openInstructions() {
if (document.getElementById('instructions').style.visibility === "hidden") {
document.getElementById('instructions').style.visibility = "visible";
}
else {
document.getElementById('instructions').style.visibility = "hidden";
}
}
function saveUserData() {
//update statistics:
//updateStatistics();
//saves the date the user is currently on
localStorage.setItem('userDate', today);
//saves the answers arrays of today
localStorage.setItem('answersColors', answersColors);
localStorage.setItem('answersLetters', answersLetters)
}
// loadUserData loads the data saved on localStorage and fills the tiles with older answers. this only happens if the day is today.
function loadUserData() {
//because localStorage only saves strings.
let savedDateString = localStorage.getItem('userDate');
let savedDate = new Date(savedDateString);
let todayNoHours = today.setHours(0, 0, 0, 0);//in order to compare date only without time
let savedDateCompare = savedDate.setHours(0, 0, 0, 0)//likewise
//only if day has changed:
if (todayNoHours === savedDateCompare) {
answersLetters = localStorage.getItem('answersLetters').split(",");
for (k = 0; k < answersLetters.length; k++) {
for (m = 0; m < answersLetters[k].length; m++) {
document.getElementById(`tile${k + 1}${m + 1}`).innerHTML = answersLetters[k][m];
}
currentRow = k + 1;
currentWord = answersLetters[k];
wordCount = k + 1;
rowCount = rowCount + 1;
compareWords();
currentWord = '';
}
}
}
function compareLetters(letterA, letterB) {
if (letterA === letterB | (letterA === "נ" && letterB === "ן") | (letterA === "צ" && letterB === "ץ") | (letterA === "פ" && letterB === "ף") | (letterA === "כ" && letterB === "ך") | (letterA === "מ" && letterB === "ם")) {
return true;
}
else if ((letterB === "נ" && letterA === "ן") | (letterB === "צ" && letterA === "ץ") | (letterB === "פ" && letterA === "ף") | (letterB === "כ" && letterA === "ך") | (letterB === "מ" && letterA === "ם")) {
return true
}
else {
return false;
}
}
function countDownTimer() {
var todaysDate = new Date()
todaysDate.setDate(todaysDate.getDate() + 1);
todaysDate.setHours(0, 0, 0, 0);
var countDownDate = todaysDate.getTime();
// Update the count down every 1 second
var x = setInterval(function () {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
hours = hours.toLocaleString(undefined, { minimumIntegerDigits: 2 });
minutes = minutes.toLocaleString(undefined, { minimumIntegerDigits: 2 });
seconds = seconds.toLocaleString(undefined, { minimumIntegerDigits: 2 });
// Output the result in an element with id="demo"
document.getElementById("timer").innerHTML = hours + ":"
+ minutes + ":" + seconds;
if (hours==0 & minutes==0 & seconds==0) {location.reload();};
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("timer").innerHTML = "";
}
}, 1000);
}
function updateStatistics() {
// //get older statistics:
// if (endOfGameToday === true) {
// let storagePlayed = localStorage.getItem('played')
// if (storagePlayed !== null) {
// newPlayed = JSON.parse(storagePlayed)+1;
// }
// else newPlayed=1;
// localStorage.setItem('played',newPlayed);
// }
// /*
// localStorage.setItem('guessDistribution',guessDistribution);
// localStorage.setItem('played',played);
// localStorage.setItem('wins',wins);
// localStorage.setItem('streak',streak);
// localStorage.setItem('maxStreak',maxStreak);
// */
}
loadUserData();
document.addEventListener("visibilitychange",function(){
//document.getElementById(`tile${rowCount}1`)
if(currentWord==='' && document.visibilityState === 'hidden'){
location.reload();
}
});
const englishKeyboardToHebrew = {
a:'ש',
b:'נ',
c:'ב',
d:'ג',
e:'ק',
f:'כ',
g:'ע',
h:'י',
i:'נ',
j:'ח',
k:'ל',
m:'צ',
n:'מ',
p:'פ',
r:'ר',
s:'ד',
t:'א',
u:'ו',
v:'ה',
x:'ס',
y:'ט',
z:'ז',
',':'ת',
'.':'ץ',
';':'ף',
'l':'ך',
o:'מ',
}
const hebrewLetters = 'אבגדהוזחטיכלמנסעפצקרשתםןץףך';
const suffixLetterToMiddleLetter = {
'ם':'מ',
'ן':'נ',
'ץ':'צ',
'ף':'פ',
'ך':'כ',
}
window.addEventListener('keydown', function (e) {
console.log(e.key);
if (e.key === 'Enter') {
sendWord();
}
if (e.key === 'Backspace') {
eraseLetter();
}
if (hebrewLetters.includes(e.key)) {
clickLetter(suffixLetterToMiddleLetter[e.key] || e.key);
}
const hebrewWordFromEnglish = englishKeyboardToHebrew[e.key.toLowerCase()];
if (hebrewLetters.includes(hebrewWordFromEnglish)) {
clickLetter(suffixLetterToMiddleLetter[hebrewWordFromEnglish] || hebrewWordFromEnglish);
}
});
// runAtMidnight(window.location.reload);
// function runAtMidnight(fn){
// var midnight = new Date();
// midnight.setHours(24, 0, 0, 0);
// var timeUntilMidnight = midnight.getTime() - Date.now();
// setTimeout(fn, timeUntilMidnight);
// }
/*
function getWordsToArray(){
hebWordsArray=[];
const fs = require('fs')
let wordExists = false;
var wordsHebrew = fs.readFileSync('he-IL.dic', 'utf8')
splitWordsHebrew = wordsHebrew.split('\r\n');
for (i = 0; i < splitWordsHebrew.length; i++) {
if (splitWordsHebrew[i].length===5) {
if (!(splitWordsHebrew[i].includes('\"'))){
hebWordsArray.push(splitWordsHebrew[i]);
}
}
}
var file = fs.createWriteStream('hello2.txt');
file.on('error', function(err) { Console.log(err) });
hebWordsArray.forEach(value => file.write(`${value} `));
file.end();
}
*/
//const fs = require('fs')
// var arr = [];
// while(arr.length < 800){
// var r = Math.floor(Math.random() * 375245) + 1;
// if(arr.indexOf(r) === -1) arr.push(r);
// }
// console.log(arr);
/*
var file = fs.createWriteStream('randoms.txt');
file.on('error', function(err) { Console.log(err) });
arr.forEach(value => file.write(`${value} `));
file.end();*/