Simple Formulario que es manejado por javascript para realizar cálculos en el navegador sin recurrir al servidor.
A Pen by Programa tu Futuro on CodePen.
| /* eslint-disable no-var,newline-before-return */ | |
| var removeDuplicates = true | |
| /** | |
| * This function should work for any instagram post. | |
| * Use it by opening Chrome's javascript console and pasting all of this code. (see link below) | |
| * https://developers.google.com/web/tools/chrome-devtools/console/ | |
| * | |
| * All comments are not immediately visible. This will automatically click the "show more" button for you. | |
| * It could take some time depending on how many comments there are. |
Simple Formulario que es manejado por javascript para realizar cálculos en el navegador sin recurrir al servidor.
A Pen by Programa tu Futuro on CodePen.
| // === Arrays | |
| var [a, b] = [1, 2]; | |
| console.log(a, b); | |
| //=> 1 2 | |
| // Use from functions, only select from pattern | |
| var foo = () => [1, 2, 3]; |