Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in
Logo1

zhangtingyan / my-project

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • my-project
  • 拷贝.html
  • zhangtingyan's avatar
    文件复制 · 11324a7b
    zhangtingyan committed Mar 25, 2020
    11324a7b Browse Files
拷贝.html 273 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<html>
<head>
</head>
<body>
<div style="display:none">
<script>
var a = {q:{w:{e:'r'}}};
var b = a;
var c = {...a};
console.log("a",a);
console.log("b",b);
console.log("c",c);
console.log("a==b",a==b,a===b);
console.log("a==c",a==c,a===c);
</script>
</div>
</body>
</html>