|
@@ -52,7 +52,7 @@ function sort(array, key, increase = true) {
|
|
|
|
|
|
//-----------------------------------------------------------array map----------------------------------------------------------------------
|
|
|
|
|
|
-let arrayMap = ["1", {}, null, undefined, "500", 700];
|
|
|
+let arrayMap = ["1", {}, null, undefined, "500", 700];
|
|
|
|
|
|
let arrayMap2 = arrayMap.map((item) => {
|
|
|
if (typeof item == "string") return isNaN(parseInt(item, 10)) ? item : parseInt(item, 10);
|
|
@@ -100,7 +100,7 @@ let someObject = {
|
|
|
function map(obj) {
|
|
|
let temp = {};
|
|
|
for (let i in obj) {
|
|
|
- temp[i + '_'] = i + '$';
|
|
|
+ temp[i + '_'] = i + '$';
|
|
|
}
|
|
|
return temp;
|
|
|
}
|
|
@@ -109,16 +109,6 @@ console.log(map(someObject));
|
|
|
|
|
|
//-----------------------------------------------------------recursion--------------------------------------------------------------------
|
|
|
|
|
|
-// a1 + function (a1, inc) {
|
|
|
-// return a1 + inc
|
|
|
-// }
|
|
|
-
|
|
|
-// function arithmeticProgression(num, increment, rows) {
|
|
|
-// for (let i = 0; i < rows; i++) {
|
|
|
-// return num + arithmeticProgression(num + increment)
|
|
|
-// }
|
|
|
-// }
|
|
|
-
|
|
|
function arithmeticProgression(num, increment, rows) {
|
|
|
if (rows <= 1) {
|
|
|
return num;
|
|
@@ -128,23 +118,50 @@ function arithmeticProgression(num, increment, rows) {
|
|
|
|
|
|
console.log(arithmeticProgression(1, 4, 8));
|
|
|
|
|
|
+//-----------------------------------------------------------HTML Tree--------------------------------------------------------------------
|
|
|
+
|
|
|
+var someTree = {
|
|
|
+ tagName: "table", //html tag
|
|
|
+ children: [ //вложенные тэги
|
|
|
+ {
|
|
|
+ tagName: "tr",
|
|
|
+ children: [{
|
|
|
+ tagName: "td",
|
|
|
+ text: "some text",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ tagName: "td",
|
|
|
+ text: "some text 2",
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ attrs: {
|
|
|
+ border: 1,
|
|
|
+ },
|
|
|
+}
|
|
|
|
|
|
function construct(obj) {
|
|
|
- let node = obj.tagName;
|
|
|
- if ("attr" in obj) {
|
|
|
+ let node = document.createElement(obj.tagName);
|
|
|
+ if ("attrs" in obj) {
|
|
|
for (let attrName in obj.attrs) {
|
|
|
- node.setAttribute(attrName, obj.attrs[attrsName])
|
|
|
+ node.setAttribute(attrName, obj.attrs[attrName])
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if("subtags" in obj) {
|
|
|
- for(let child in obj.subtags) {
|
|
|
- construct(obj.subtags[child]);
|
|
|
+ if ("children" in obj) {
|
|
|
+ for (let child in obj.children) {
|
|
|
+ node.append(construct(obj.children[child]));
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if("text" in obj) {
|
|
|
+ if ("text" in obj) {
|
|
|
node.innerText = obj.text;
|
|
|
}
|
|
|
+ return node;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+document.body.append(construct(someTree));
|
|
|
+
|
|
|
+console.log(construct(someTree));
|