-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.ts
45 lines (34 loc) · 869 Bytes
/
functions.ts
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
const add = (a:number, b:number): number => {
return a + b
}
// It is important to specify the return type otherwise I can face a problem
// const subtract = (a:number, b:number) => {
// a + b
// }
function divide(a: number, b: number): number {
return a / b
}
const multiply = function(a:number, b: number): number {
return a * b
}
const logger = (message: string): void => {
console.log(message)
}
const error = (message: string): never => {
throw new Error(message);
}
const throwError = (message: string): string => {
if(!message) {
throw new Error(message);
}
return message
}
const todaysWeather = {
date: new Date(),
weather: "sunny"
}
const longWeather = ({date, weather}: {date: Date, weather: string}): void => {
console.log(date)
console.log(weather);
}
longWeather(todaysWeather)