Initial commit
This commit is contained in:
6
TypyDanych/typyDanych.js
Normal file
6
TypyDanych/typyDanych.js
Normal file
@@ -0,0 +1,6 @@
|
||||
let a = {name: "Arek"};
|
||||
let b = a;
|
||||
b.name = "Paweł";
|
||||
|
||||
console.log(a.name);
|
||||
console.log(b.name);
|
||||
Reference in New Issue
Block a user