Posts by much • 1 point
3 posts
-
0
votes0
answers36
views -
-2
votes1
answer25
viewsQ: Scroll only works on a div
<html> <head> <meta charset="UTF-8" /> <title>Astro</title> <link rel="stylesheet" type="text/css" href="styles.css" media="screen" /> </head> <body>…
-
0
votes1
answer28
viewsQ: Error when trying to identify if a string is equal to one of the values of an array
const Discord = require('discord.js'); module.exports.run = (client, msg, args) => { msg.delete(); let type = args[0]; let types = ['available', 'idle', 'dnd', 'invisible'] if(!type === types[0]…