Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //task5
  2. var vertical = 'kopele';
  3. var horizontal = 'opera';
  4.  
  5. h = vertical.split('');
  6. w = horizontal.split('');
  7.  
  8. console.log(h);
  9.  
  10. for (var index = 0; index < h.length; index++) {
  11.  
  12. if (h[index] == w[0]) {
  13. console.log(horizontal);
  14. continue;
  15. }
  16.  
  17. console.log(h[index]);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement