Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. const LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
  2.  
  3. console.log('start')
  4.  
  5. let result = '';
  6.  
  7. Object.prototype.toString = function() {
  8. return LETTERS[Object.keys(this).length * 2];
  9. };
  10.  
  11. const obj = { x: 5 };
  12.  
  13. result += (0.1 + 0.2 === 0.3) ? 'ro' : 'k';
  14.  
  15. result += ''.padStart(2, Object.assign(obj, { x: 12, y: 2 }));
  16.  
  17. result += LETTERS[(obj == { x: 12, y: 2 }) ? 8 : 15];
  18.  
  19. result += String.fromCharCode(2 ** 5);
  20.  
  21. result += (() => {
  22. try { return eval("'use strict'; with(OBJ) { x = 18; }; LETTERS[OBJ.x]");
  23. } catch (e) { return 'r'; }
  24. })();
  25.  
  26.  
  27. result += LETTERS[
  28. obj.x,
  29. + Object.assing(obj, {y:2}, obj, {x:5,z:2,q:0,w:2}).y
  30. ];
  31.  
  32. result += String.fromCharCode(('' + obj).charCodeAt(0) + 1);
  33.  
  34. result += LETTERS[Object.values(obj).reduce(a, b) => a+b)];
  35.  
  36. result += (Numbers.MAX_VALUE / Number.MIN_VALUE * Number.MIN_VALUE).toString().slice(0, 2) || "e";
  37.  
  38. result += LETTERS[((7 & 5 ^ 8 | 4) >> 1)];
  39.  
  40. console.log('start')
  41. console.log(reault.toLowerCase());
  42. console.log('done')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement