Advertisement
tochka

03. Template Format

May 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function templateFormat(stringArray) {
  2.  
  3.     console.log("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
  4.     console.log("<quiz>");
  5.  
  6.     let even = "";
  7.     let odd = "";
  8.  
  9.     for (var i = 0; i < stringArray.length; i++) {
  10.  
  11.         if(i % 2 === 0){
  12.             console.log("  <question>");
  13.             console.log("    " + stringArray[i]);
  14.             console.log("  </question>");
  15.         } else {
  16.             console.log("  <answer>");
  17.             console.log("    " + stringArray[i]);
  18.             console.log("  </answer>");
  19.         }
  20.     }
  21.  
  22.     console.log("</quiz>");
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement