We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d935d commit 4459778Copy full SHA for 4459778
3 files changed
full-stack-dev/4-js-advanced/.editorconfig
@@ -0,0 +1,16 @@
1
+# editorconfig.org
2
+root = true
3
+
4
+[*]
5
+indent_style = space
6
+indent_size = 2
7
+end_of_line = lf
8
+charset = utf-8
9
+trim_trailing_whitespace = true
10
+insert_final_newline = true
11
12
+[*.md]
13
+trim_trailing_whitespace = false
14
15
+[*.js]
16
+quote_type = single
full-stack-dev/4-js-advanced/3-set-and-map/3-1-intro-to-set-obj/index.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Intro to Set() object</title>
+</head>
+<body>
+ <p>Test -g live server..</p>
+ <p>it's work..</p>
+</body>
+</html>
full-stack-dev/4-js-advanced/3-set-and-map/3-1-intro-to-set-obj/practice.js
@@ -0,0 +1,4 @@
+'use strict';
+// Задание 1:
+//
0 commit comments