|
@@ -28,3 +28,23 @@ let value: any = 42;
|
|
let fixedString1: string = (<number>value).toFixed(2);
|
|
let fixedString1: string = (<number>value).toFixed(2);
|
|
let fixedString2: string = (value as number).toFixed(2);
|
|
let fixedString2: string = (value as number).toFixed(2);
|
|
console.log(value, fixedString1, fixedString2);
|
|
console.log(value, fixedString1, fixedString2);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ * y is now optional, while x is not.
|
|
|
|
+ */
|
|
|
|
+function foo(x: number, y?: string): string {
|
|
|
|
+ return x.constructor.toString() + y;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+foo(2, "3");
|
|
|
|
+foo(2);
|
|
|
|
+
|
|
|
|
+function bar(...args: number[]) {
|
|
|
|
+ console.log(args.reduce((accu: number, curr: number) => accu + curr, 0));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+bar(1, 2, 3, 4, 5);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|