Skip to content

Instantly share code, notes, and snippets.

View browneye1826's full-sized avatar
🇺🇦
Praying for Ukraine

browneye1826

🇺🇦
Praying for Ukraine
View GitHub Profile
Topic Python both JavaScript
comments #
""" """
//
/* */
declaration my_var = 5 var myVar = 5
let myVar = 5
const myVar = 5
operators // +
-
*
**
/
%
assignment =
+=
-=
*=
**=
/=
%=
deletion del(my_var) delete(myVar)
increment
decrement
++
--
equivalence is ==``!= ===``!==