script.js 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. //////html tree
  2. function htmlTree() {
  3. var body = {
  4. tagName: "body",
  5. subTags: [
  6. {
  7. tagName: "div",
  8. subTags: [
  9. {
  10. tagName: "span",
  11. text: "Enter a data please:",
  12. },
  13. {
  14. tagName: "br/",
  15. },
  16. {
  17. tagName: "input",
  18. attrs: {
  19. type: "text",
  20. id: "name"
  21. },
  22. },
  23. {
  24. tagName: "input",
  25. attrs: {
  26. type: "text",
  27. id: "surname"
  28. }
  29. }
  30. ]
  31. },
  32. {
  33. tagName: "div",
  34. subTags: [
  35. {
  36. tagName: "button",
  37. text: "OK",
  38. attrs: {
  39. id: "ok",
  40. }
  41. },
  42. {
  43. tagName: "button",
  44. text: "Cancel",
  45. attrs: {
  46. id: "cancel"
  47. }
  48. }
  49. ]
  50. }
  51. ],
  52. }
  53. alert(body.subTags[1].subTags[1].text)
  54. alert(body.subTags[0].subTags[3].attrs.id)
  55. }
  56. // htmlTree()
  57. //////
  58. //////
  59. /////declarative fields
  60. /////object links
  61. function declarativeFriends() {
  62. var notebook = {
  63. brand: prompt("Name of brand of notebook"),
  64. type: prompt("Number of type in style 'XXX XX'"),
  65. model: prompt("Model code"),
  66. ram: +prompt("Ram"),
  67. size: prompt("Size"),
  68. weight: +prompt("Weight in style X.X"),
  69. resolution: {
  70. width: +prompt("Width"),
  71. height: +prompt("Height"),
  72. },
  73. };
  74. var phone = {
  75. brand: prompt("Name of brand of phone"),
  76. model: prompt("Model code"),
  77. ram: +prompt("Ram"),
  78. color: prompt("What's color?"),
  79. };
  80. var person = {
  81. name: prompt("Write your name?"),
  82. surname: prompt("Write your surname?"),
  83. married: confirm("Are you married? Click 'ok' if answer is 'yes' and 'cancel' if 'no'"),
  84. }
  85. person.laptop = notebook;
  86. person.smartphone = phone;
  87. phone.owner = person;
  88. notebook.owner = person;
  89. alert("Notebook \n owner: " + notebook.owner.name + "\n brand: " + notebook.brand + "\n type: " + notebook.type + "\n model: " + notebook.model + "\n ram: " + notebook.ram + "\n size: " + notebook.size + "\n weight: " + notebook.weight + "\n width: " + notebook.resolution.width + "\n height: " + notebook.resolution.height)
  90. alert("Phone\n owner: " + phone.owner.name + "\n brand: " + phone.brand + "\n model: " + phone.model + "\n ram: " + phone.ram + "\n color: " + phone.color)
  91. alert("Person\n name " + person.name + "\n surname: " + person.surname + "\n married: " + person.married + "\n laptop: " + notebook.brand + "\n smartphone: " + phone.brand)
  92. if (person.smartphone.owner.laptop.owner.smartphone == person.smartphone){
  93. alert ("You're superman")
  94. } else {
  95. alert ("Try again, loser")
  96. }
  97. }
  98. // declarativeFriends()
  99. //////////////
  100. /////imperative array fill 3
  101. function imperativeArray() {
  102. let imperative = [];
  103. imperative[0] = prompt("How old are you?"), imperative[1] = prompt("How old is your father?"), imperative[2] = prompt("How old is your mother?")
  104. alert("So you are " + imperative[0] + " years old. Your father is " + imperative[1] + " and mother is " + imperative[2])
  105. }
  106. // imperativeArray()
  107. ////////
  108. //////
  109. ///while confirm
  110. function whileConfirm(question) {
  111. question = false;
  112. while(question === false) {
  113. question = confirm("Are you're dead?")
  114. }
  115. }
  116. // whileConfirm()
  117. //////////
  118. ////array fill
  119. function arrayFill() {
  120. var array = [];
  121. var once = true;
  122. while(!!once === true || once === "") {
  123. once = prompt("Write something")
  124. array.push(once)
  125. }
  126. alert("The array's length is " + array.length)
  127. }
  128. // arrayFill()
  129. ///////
  130. /////array fill nopush
  131. function arrayFillNopush() {
  132. var i = 0;
  133. var array = [];
  134. var once = prompt("Write something");
  135. while(!!once === true || once === "") {
  136. array[i++] = once;
  137. once = prompt("Write something");
  138. }
  139. alert("The array's length is " + array.length)
  140. }
  141. // arrayFillNopush()
  142. ////infinite probability
  143. function infiniteProbably() {
  144. let haha = true;
  145. let i = 0;
  146. let array = []
  147. debugger
  148. while (haha === true) {
  149. i = Math.random();
  150. array.push(i)
  151. if (i > 0.9) {
  152. break;
  153. }
  154. confirm("And again")
  155. }
  156. alert ("You had " + array.length + " expected output")
  157. }
  158. // infiniteProbably()
  159. //////
  160. ///////empty loop
  161. function emptyLoop() {
  162. var again = null;
  163. while((again = prompt("And again?")) === null) {
  164. }
  165. }
  166. // emptyLoop()
  167. ///////////
  168. //////progression sum
  169. function progressionSum() {
  170. let b = (+prompt("Chose your number"))
  171. let sum = 1;
  172. let a = 1;
  173. for (let i = 1; b > a; i++){
  174. a = a + 3;
  175. if (a > b) {
  176. alert(sum + " but it can have an error in 1-2 count")
  177. return
  178. } else {
  179. sum = sum + a;
  180. }
  181. }
  182. alert (sum)
  183. }
  184. // progressionSum()
  185. //////////////////
  186. ////chess one line
  187. function chessOneLine() {
  188. let num = +prompt("String length is...");
  189. let string = "";
  190. for(let i = 0;i < num; i++){
  191. string += "#" + " ";
  192. }
  193. return console.log(string)
  194. }
  195. // chessOneLine()
  196. ///////////////
  197. ///////
  198. /////numbers
  199. function numberCucle() {
  200. let stringMass = "";
  201. for(let i = 0; i < 10; i++) {
  202. let string = "";
  203. for (let j = 0; j < 10; j++) {
  204. string += j
  205. }
  206. stringMass += string + "\n"
  207. }
  208. console.log(stringMass)
  209. }
  210. // numberCucle()
  211. ///////////////////
  212. //////////
  213. ////chess
  214. function chess(){
  215. let desk = "";
  216. let string = "";
  217. let x = +prompt("Please write a size of horizontal")
  218. let y = +prompt("Please write a size of vertical")
  219. for(let i = 0; i < y; y--){
  220. for(let j = 0; j < x; x--) {
  221. if(y % 2 === 0){
  222. if(x % 2 === 0) {
  223. string += "#";
  224. } else {
  225. string += ".";
  226. }
  227. } else {
  228. if(x % 2 === 0) {
  229. string += ".";
  230. } else {
  231. string += "#";
  232. }
  233. }
  234. }
  235. desk += string + "\n"
  236. }
  237. console.log(desk)
  238. }
  239. // chess()
  240. ////////////
  241. /////////
  242. //cubes
  243. function cubes() {
  244. var array = [];
  245. var arrayString = "";
  246. array.length = +prompt("And array length is...");
  247. for(let i = 0; i < array.length; i++) {
  248. array[i] = Math.pow(i, 3)
  249. arrayString += array[i] + " "
  250. }
  251. alert(arrayString)
  252. }
  253. // cubes()
  254. ///////////////////////
  255. ///////////////
  256. ////multiply table
  257. function multiplyTable() {
  258. var table = [];
  259. for(let i = 0; i < 10; i++) {
  260. table[i] = [];
  261. for(let j = 0; j < 10; j++){
  262. table[i][j] = ((i) * j)
  263. }
  264. }
  265. console.log(table)
  266. alert(table[5][6])
  267. alert(table[7][2])
  268. }
  269. // multiplyTable()
  270. //////////////////
  271. ///////////
  272. ///matrix to html table
  273. function matrixTable() {
  274. debugger
  275. var table = [];
  276. for(let i = 0; i < 10; i++) {
  277. var newDiv = document.createElement("div");
  278. table[i] = [];
  279. for(let j = 0; j < 10; j++){
  280. var newSpan = document.createElement("span");
  281. newSpan.style.display = "inline-block";
  282. newSpan.style.width = "30px"
  283. table[i][j] = ((i) * j);
  284. newSpan.innerHTML = table[i][j];
  285. newDiv.appendChild(newSpan);
  286. }
  287. document.body.append(newDiv);
  288. }
  289. }
  290. // matrixTable()
  291. //////////////////
  292. ////////////////
  293. /////blue belt
  294. function blueBelt() {
  295. var triangle = "";
  296. var string = "";
  297. var sharp = "#";
  298. var dottRep = 5;
  299. for(let j = 0; j < 6; j++) {
  300. var dott = ".";
  301. dott = dott.repeat(dottRep);
  302. string += dott + sharp + dott + "\n";
  303. dottRep = dottRep - 1;
  304. sharp += "##"
  305. }
  306. triangle += string + "\n";
  307. console.log(triangle)
  308. }
  309. // blueBelt()
  310. /////////////////
  311. ////////////////
  312. //blackBelt
  313. var predictArray = [[-1]];
  314. var historyArr = [1, 1, 1, 1];
  315. var myMove = Math.round(Math.random());
  316. function blackBelt() {
  317. var yourMove = +prompt("Your move 0 or 1");
  318. var answer;
  319. if (yourMove === 1 || yourMove === 0) {
  320. if (myMove === yourMove){
  321. answer = confirm("I knew it. Let's try again");
  322. } else {
  323. answer = confirm ("You win. Let's try again");
  324. }
  325. myMove = predictArray[0][0];
  326. predictArray = [[historyArr[0]],[historyArr[1]],[historyArr[2]],[historyArr[3]]];
  327. historyArr.shift();
  328. historyArr.push(yourMove);
  329. if(answer == true) {
  330. return blackBelt()
  331. }
  332. } else {
  333. alert ("Error. Try again")
  334. }
  335. }
  336. // blackBelt();