Sign up
Login
New paste
Home
Archive
English
English
Sign up
Login
New Paste
Browse
Conditional/Ternary operator Syntax=> condition ? exprIfTrue : exprIfFalse Example=> (age>10) "old" ? "young" If condition is true or truthy, do 1st expression else do 2nd expression -------------------------------------------------------------------------------------- Falsy: value that is considered false when encountered in a Boolean context 0, null, NaN, undefined, empty string: " " Truthy: anything but falsy. ---------------------------------------------------------- Logical OR operator Syntax=> leftExpr || rightExpr Example=> let name= result || "Unknown"; If result is 0, null, NaN, undefined or an empty string: " ", let name be "Unknown" ------------------------------------------------------ Nullish coalescing operator Syntax=> leftExpr ?? rightExpr Example=> let name= result ?? "Unknown"; If result is null or undefined let name be "Unknown" Same as logical OR but if first operand is NaN, 0, or an empty string, it uses the value, rather than taking the value of the 2nd operand ..... How to select elements whose IDs contain a dot Dots are meant for classes so you need to escape them using backslash Example: <span id="my.span">hi</span> CSS #my\.span{ rules } JavaScript document.querySelector("#my\\.span") Note: 2 backslashes because strings naturally consume backslashes
Paste Settings
Paste Title :
[Optional]
Paste Folder :
[Optional]
Select
Syntax Highlighting :
[Optional]
Select
Markup
CSS
JavaScript
Bash
C
C#
C++
Java
JSON
Lua
Plaintext
C-like
ABAP
ActionScript
Ada
Apache Configuration
APL
AppleScript
Arduino
ARFF
AsciiDoc
6502 Assembly
ASP.NET (C#)
AutoHotKey
AutoIt
Basic
Batch
Bison
Brainfuck
Bro
CoffeeScript
Clojure
Crystal
Content-Security-Policy
CSS Extras
D
Dart
Diff
Django/Jinja2
Docker
Eiffel
Elixir
Elm
ERB
Erlang
F#
Flow
Fortran
GEDCOM
Gherkin
Git
GLSL
GameMaker Language
Go
GraphQL
Groovy
Haml
Handlebars
Haskell
Haxe
HTTP
HTTP Public-Key-Pins
HTTP Strict-Transport-Security
IchigoJam
Icon
Inform 7
INI
IO
J
Jolie
Julia
Keyman
Kotlin
LaTeX
Less
Liquid
Lisp
LiveScript
LOLCODE
Makefile
Markdown
Markup templating
MATLAB
MEL
Mizar
Monkey
N4JS
NASM
nginx
Nim
Nix
NSIS
Objective-C
OCaml
OpenCL
Oz
PARI/GP
Parser
Pascal
Perl
PHP
PHP Extras
PL/SQL
PowerShell
Processing
Prolog
.properties
Protocol Buffers
Pug
Puppet
Pure
Python
Q (kdb+ database)
Qore
R
React JSX
React TSX
Ren'py
Reason
reST (reStructuredText)
Rip
Roboconf
Ruby
Rust
SAS
Sass (Sass)
Sass (Scss)
Scala
Scheme
Smalltalk
Smarty
SQL
Soy (Closure Template)
Stylus
Swift
TAP
Tcl
Textile
Template Toolkit 2
Twig
TypeScript
VB.Net
Velocity
Verilog
VHDL
vim
Visual Basic
WebAssembly
Wiki markup
Xeora
Xojo (REALbasic)
XQuery
YAML
HTML
Paste Expiration :
[Optional]
Never
Self Destroy
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Status :
[Optional]
Public
Unlisted
Private (members only)
Password :
[Optional]
Description:
[Optional]
Tags:
[Optional]
Encrypt Paste
(
?
)
Create New Paste
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Site Languages
×
English
Do you like cookies?
🍪 We use cookies to ensure you get the best experience on our website.
Learn more
I agree