-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiscovid19.js
46 lines (41 loc) · 1.03 KB
/
iscovid19.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
/**
* Learn facts about the CoVID-19 disease.
* This project is of course complete nonsense, but CoVID-19 is not, stay safe.
*/
export class IsCovid19{
/**
* Is the CoVID-19 disease about to destroy the world?
*/
static aboutToDestroyTheWorld(){
return false;
}
/**
* Is the CoVID-19 disease a hoax?
*/
static aHoax(){
return false;
}
/**
* Is the CoVID-19 disease staged by Bill Gates?
*/
static stagedByBillGates(){
return false;
}
/**
* Is the CoVID-19 disease a threat to humanity?
*/
static aThreatToHumanity(){
return 0.75;
}
/**
* Is it SARS-CoV-2, coronavirus or CoVID-19? Learn it with either the extended or simple answer.
* @param extended Whether to answer in an extended way.
*/
static theRealNameOfTheVirus(extended = false){
if(extended){
return "No, the SARS-CoV-2 coronavirus causes the CoVID-19 disease."
}else{
return false;
}
}
}