// string
"Essa Γ© uma string"
'Essa Γ© outra string'
`Adivinha sΓ³?! Mais uma string!`
// boolean
true
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[/] | |
appicon-margin=0 | |
appicon-padding=5 | |
available-monitors=[0] | |
desktop-line-use-custom-color=false | |
dot-color-1='#5294e2' | |
dot-color-2='#5294e2' | |
dot-color-3='#5294e2' | |
dot-color-4='#5294e2' | |
dot-color-dominant=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Discord all events! | |
// A quick and dirty fleshing out of the discord.js event listeners (not tested at all!) | |
// listed here -> https://discord.js.org/#/docs/main/stable/class/Client | |
// Learn from this, do not just copy it mofo! | |
// | |
// Saved to -> https://gist.github.com/koad/316b265a91d933fd1b62dddfcc3ff584 | |
/* | |
koad-was-here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var objeto = { tamanho: 10, nome: undefined, peso: 180 }; | |
// =========================================== exemplo 1 | |
// "desmembramento manual" =[ | |
var size = objeto.tamanho; | |
var name = objeto.nome || "Bruno"; | |
var weight = objeto.peso; |
NewerOlder