Skip to content

Instantly share code, notes, and snippets.

@SevenworksDev
SevenworksDev / How_to_anger_JavaScript_Developers.md
Created July 22, 2023 03:10
How to anger Javascript Developers

Angering JavaScript Developers for dummies

JavaScript is a cool programming language that is commonly used in websites and sometimes applications.

;

Ever heard of a semicolon? A semicolon (;) is whats commonly used in JavaScript.
There is one exact lookalike to the semicolon we all love.
Its the greek question mark. Now lets get to the coding part.

Woah! Chill down satan

Here is an example of JavaScript code, This of course prints Hello World to the console.

<style>
/* customizable snowflake styling */
.snowflake {
color: #fff;
font-size: 1em;
font-family: Arial, sans-serif;
text-shadow: 0 0 5px #000;
}
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:line