obj = {
"name" : "Boris",
"age" : "20",
"city" : "Moscow",
"all" : function() {return this.name + " " + this.age + " " + this.city}
}
console.log(obj.all());
function load() {
fetch("ajax.json").then(function(res){
return res.json();
}).then(function(res) {
document.write(res.all());
}).catch();
}
load();
{
"name" : "Boris",
"age" : "20",
"city" : "Moscow",
"all" : function() {return this.name + " " + this.age + " " + this.city}
}
use strict
отсутствует.false
, он не присвоим переменной значение false
, а отработает или
?true
он присвоит true
var x = false;
var sec = x || "no data";
console.log(sec);
no data
sec =
илиx
, или текст
х
не существует, пусть будет текст
, но он ругаетсяvar sec = x || "no data";
console.log(sec);
function show(el) {
var x = el.x || "no data x";
var z = el.z || x;
console.log(x + " " + z);
}
127.0.0.1 nghost
127.0.0.1 ng.host
localhost
localhost
, localhost2
выводит в поиск браузерhttp://localhost2
выдаст ссылку и то на localhost
127.0.0.1:8000 localhost2
так написать? (сейчас попробовал, вообще на localhost2 перестало заходить)server {
listen 8000;
server_name localhost2;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root "C:/nginxFiles";
index index.html index.htm;
}
# For example:
#
# 105.51.74.17 rhino.acme.com # source server
# 28.15.60.01 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
127.0.0.1 localhost2