Anchor tag within anchor a11y question
So let's say we have a card that is a URL in itself, that is, it's an anchor tag, and within an anchor tag, there is a paragraph that also has an anchor tag. So what's the accessibility concern in hav
Search for a command to run...
So let's say we have a card that is a URL in itself, that is, it's an anchor tag, and within an anchor tag, there is a paragraph that also has an anchor tag. So what's the accessibility concern in hav
Good catch. The difference is: in foo, the await is directly inside foo in two, the await is waiting on another async function’s promise So in one case, foo queues its own continuation immediately
(on this page i have [3) Harder: await inside nested async flow] - do this always, it has tricky aspect ok there are a lot of promise and timout output based question give 1 Here are 3, from easy to h
what is happening let a= {b:{c:1}} undefined let b = {...a} undefined b.b.a = 2 2 b.b.c = 3 3 b and why What’s happening is: {...a} makes only a shallow copy. So here: let a = { b: { c: 1 } } let b
read ths articlw along with my nullish vala article so both sides are coerced or only when side and what are the rules of type coercion? Thought for a second Not always both. == has specific rules abo
let x= 0; let y = "0"; let z = false; console.log("1: ", x==y, "2", y==z, "3", x==z) why are they true, is there somethinf related to truthy flasey also needed to be considered Thought for a second Th
🔰 STEP 0: You make a function jsCopyEditfunction A() {} Behind the scenes, JavaScript automatically gives this function a property called prototype: jsCopyEditconsole.log(A.prototype); // → { constructor: A } So: A is a function. A.prototype is...
Objective: To learn how CSS positioning works. To make a specific type of positioning active on an element, we use the position property. Relative positioning::it's important to note that relative positioning can be applied to both block and inline...
I always forget the sytax of linking js and css files in html file so just putting it here for quick reference in future <head> <link rel="stylesheet" href="css/layout.css" type="text/css"> </head> and the Javascript file before the closing </body...