Skip to content

Instantly share code, notes, and snippets.

View matheustanaka's full-sized avatar
:shipit:

Matheus Tanaka matheustanaka

:shipit:
View GitHub Profile
@matheustanaka
matheustanaka / index.js
Last active January 2, 2023 17:07
Script para ficar online no teams
// Primeira instrucao: abrir o console do navegador, use f12 ou ctrl+shift+i
// Copiar o código abaixo, colar e pressionar enter
function typeArray(inputElement, stringArray) {
for (let i = 0; i < stringArray.length; i++) {
setTimeout(function() {
inputElement.value += stringArray[i]; //O input vai receber cada palavra que estiver dentro do stringArray
}, i * 300000);
}
}