var a = 'route 1';
if (a === 'route 1'){
console.log ('True');
}else {
console.log ('False');
}
var mysql = require('mysql');
var con = mysql.createConnection({ host: "localhost", user: "admin", password: "admin" });
con.connect(function(err) {
if (err)
throw err;
console.log("Connected!");
con.query("CREATE DATABASE cprogramcodes", function (err, result) {
if (err)
throw err;
console.log("Database created");
});
});
DECLARE a number; b number; c number;
PROCEDURE findMinimum(x IN number, y IN number, z OUT number) IS
BEGIN
IF x < y
THEN z:= x;
ELSE
z:= y;
END IF;
END;
BEGIN
a:= 12;
b:= 13;
findMinimum(a, b, c);
dbms_output.put_line(' Minimum of (12, 13) : ' || c);
END;
/
EXECUTE beginner;
// node js code to create a server and write HELLO WORLD!
var http = require ('http');
http.createServer (function (req,res) => {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('HELLO WORLD!');})
.listen(8080);
// Copy and paste the above code into a file and name it helloworld.js
// Now to run it, open the command prompt and go to the file location
// Execute the first command - >
// npm i http
//Execute the second command ->
// node helloworld.js
// now open browser and copy and paste the link in the URL - http://localhost:8080