Skip to content

Commit 81ba338

Browse files
committed
node-juststarted
1 parent b567d92 commit 81ba338

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
var http = require('http');
2+
3+
http.createServer(function (req, res) {
4+
res.writeHead(200, {'Content-Type': 'text/html'});
5+
res.end('Hello World!');
6+
}).listen(8080);

js_notes/cohertnotes/week1/01. cohert1-week1.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Video 1
33
44
Introduction
55
6-
Initially we could communicate with the computer only using binary and assembly code but it was not a optimal way to write code because each hardware processor have different assembly code to do the same process so the software solutions can't be scaled. Thats the reason why we are having high level languages now which are comparitively easy to write as well as scalable because the comiler compiles the high level code into machine understandable code.
6+
Initially we could communicate with the computer only using binary and assembly code but it was not a optimal way to write code because each hardware processor have different assembly code to do the same process so the software solutions can't be scaled. Thats the reason why we are having high level languages now which are comparitively easy to write as well as scalable because the compiler compiles the high level code into machine understandable code.
77
88
JS Architecture
99

0 commit comments

Comments
 (0)