linux memory usage
// linux command for reporting used memory percentage
$ free | grep Mem | awk '{print $3/$2 * 100.0}'
23.8171
linux memory usage
// linux command for reporting used memory percentage
$ free | grep Mem | awk '{print $3/$2 * 100.0}'
23.8171
js location
// https://example.com:81/path?argument=value#hash
location.href // https://example.com:81/path?argument=value#fragment
location.protocol // https
location.hostname // example.com
location.port // 81
location.host // example.com:81
location.pathname // /path
location.search // ?argument=value (see URLSearchParams to parse)
location.hash // #hash
location.origin // https://example.com"
javascript get current url
var currentUrl = window.location.href;
window.href
//its actually
window.location.href = "/App/Home"
//or
window.location.href = "https://www.google.com/"
javascript location object
// Prints complete URL
window.location.href
// Prints protocol like http: or https:
window.location.protocol
// Prints hostname with port like localhost or localhost:3000
window.location.host
// Prints hostname like localhost or www.example.com
window.location.hostname
// Prints port number like 3000
window.location.port
// Prints pathname like /products/search.php
window.location.pathname
// Prints query string like ?q=ipad
window.location.search
// Prints fragment identifier like #featured
window.location.hash
window location any web
var url = new URL("http://aaa.bbb.ccc.com/asdf/asdf/sadf.aspx?blah");
console.log(url.protocol); // "http:"
console.log(url.hostname); // "aaa.bbb.ccc.com"
console.log(url.pathname); // "/asdf/asdf/sadf.aspx"
console.log(url.search);
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