list process using port
sudo lsof -n -i :80 | grep LISTEN
list process using port
sudo lsof -n -i :80 | grep LISTEN
get process running on port
# ss -tanp | grep 6379
LISTEN 0 128 127.0.0.1:6379 *:* users:(("redis-server",pid=2531,fd=4))
See process on port
netstat -ano | findstr 8080Code language: Bash (bash)
console.log
console.log('Hello World');
console.error('This is an error');
console.warn('This is a warning');
console.dir(document);
console.log(document.URL);
console.table([{name: 'Anthony', email: 'test.com', age: 33}]);
console.clear();
console.group('Say Hello');
console.log('Hello Anthony');
console.log('Hello Sally');
console.log('Hello Chris');
console.groupEnd('Say Hello');
console.time('For Loop');
for (var i = 0; i < 2000; i++) {
console.log(i);
}
console.timeEnd('For Loop');
Console.log
//Console.log is a way to send a message to the console.
//by typing console.log("") then putting text inside the quotation marks.
Console.log("Hello World!")
//pr of your using a varible you don't use the quotation marks.
var Varible = "Hello World!"
Console.log(Varible)
//You can use console.log for many uses like sending info about Errors.
javascript console.log
console.log('I want to log this so I am logging this. Calm down and log.')
console.log
var players = ['Jim', 'Shawna', 'Andrew', 'Lora', 'Aimee', 'Nick'];
console.log(players);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us