by NotÞatGuy July 20, 2022
by NotÞatGuy October 07, 2023
contrary to popular belief, this has a use -- in programming as a way of using quotations that doesn't cause problems, used for stuff from notifying users they've changed something to code snippets
`var required = "werwerwer";
if (prompt("guess?") == required) {
alert("correct");
} else {
alert("wrong");
}; // please tell me this is right`
if (prompt("guess?") == required) {
alert("correct");
} else {
alert("wrong");
}; // please tell me this is right`
by NotÞatGuy August 11, 2023