First bitta TS done

This commit is contained in:
James McKenzie 2021-04-23 10:23:26 +12:00
commit a6d2ce5903
7 changed files with 1685 additions and 0 deletions

1
TSLearning/Section 1/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

View File

@ -0,0 +1,8 @@
function sendRequest(data, cb) {
// ... sending a request with "data"
return cb({ data: 'Hi there!' });
}
sendRequest('Send this!', function (response) {
console.log(response);
return true;
});

View File

@ -0,0 +1,9 @@
function sendRequest(data: string, cb: (response: any) => void) {
// ... sending a request with "data"
return cb({data: 'Hi there!'});
}
sendRequest('Send this!', (response) => {
console.log(response);
return true;
});

View File

@ -0,0 +1,8 @@
function add(n1 :number, n2 :number){
return n1 + n2;
}
const number1 = 5;
const number2 = 3.3;
const result = add(number1, number2);
console.log(result);

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typescript Learning</title>
<script src="app.js" defer></script>
</head>
<body>
<p> Hi </p>
</body>
</html>

1630
TSLearning/Section 1/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,15 @@
{
"name": "section-1",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "lite-server"
},
"author": "",
"license": "ISC",
"devDependencies": {
"lite-server": "^2.5.4"
}
}