Tag: javascript
It is possible target specific elements in a DOM via CSS
using selectors ``css
h2 {
/ property: value; /
}
` It is also possible to
use CSS selector in JS DOM `js
const elements = document.querySelector("h2")
` With the advent of a JAMstack it is also possible to target Markd... Here's how I use Cypress to assert that the user interface I am building
displays datetime information sorted chronologically. Consider the list of
dates served at the port 3000 that looks like this: ``html 14.12.1999
12.03.1975
28.02.2001
20.08.2010
05.07.2018 ` I live... Have you ever wondered about the sheer amount of problems you encounter
daily? Some of them disappear over time. Some of them may be ignored. Some
of them might be delegated to someone else, if you can afford it. If none
of these options are available, your time and your attentio...