We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a93ce commit 811a6c7Copy full SHA for 811a6c7
1-js/3-code-quality/1-debugging-chrome/head.html
@@ -0,0 +1,8 @@
1
+<style>
2
+span.devtools {
3
+ display: inline-block;
4
+ background-image: url(/article/debugging-chrome/statusbarButtonGlyphs.svg);
5
+ height:16px;
6
+ width:16px;
7
+}
8
+</style>
1-js/4-data-structures/10-arguments-pseudoarray/head.html
@@ -0,0 +1,14 @@
+<script>
+function copy() {
+ var dst = arguments[0];
+
+ for (var i = 1; i < arguments.length; i++) {
+ var arg = arguments[i];
+ for (var key in arg) {
+ dst[key] = arg[key];
9
+ }
10
11
12
+ return dst;
13
14
+</script>
0 commit comments