asdsadasdasdasdas
asdsadasdasd
qweqeqweq
| // hahaha I'm GTM and I'll just add this to the head of the page | |
| // thus breaking all the javascript on the page | |
| // because "I'm GTM and I'm the most important thing on the page" | |
| document.addEventListener("click", e => { | |
| e.preventDefault(); | |
| }); |
| products = [ | |
| { | |
| name: "Caneca Moustache ", | |
| sku: "CA1UN20SM01", | |
| quantity: "1", | |
| price: "180", | |
| description: | |
| " Caneca modelada à mão com muito amor. Fala sério, olha a textura desse bigode ♡ ", | |
| }, | |
| { |
| const flatten = (input) => input.reduce((acc, item) => { | |
| const flattenedItem = item instanceof Array | |
| ? flatten(item) | |
| : item; | |
| return acc.concat(flattenedItem); | |
| }, []); |
| function myGist() { | |
| console.log('hhahaha') | |
| } |
asdsadasdasdasdas
asdsadasdasd
qweqeqweq
| Verifying that +diogobeda is my blockchain ID. https://onename.com/diogobeda |
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); |