--- id: 61fd778081276b59d59abad6 title: Step 13 challengeType: 0 dashedName: step-13 --- # --description-- Nel primo `tr`, aggiungi un elemento `th` con il testo `Cash This is the cash we currently have on hand.`. Racchiudi tutto il testo tranne `Cash` in un elemento `span` con l'attributo `class` impostato su `description`. Poi, aggiungi tre elementi `td` con il seguente testo (in ordine): `$25`, `$30`, `$28`. Dai al terzo elemento `td` un attributo `class` con il valore `current`. # --hints-- Il primo `tr` dovrebbe avere un elemento `th`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelector('th')); ``` L'elemento `th` dovrebbe avere il testo `Cash This is the cash we currently have on hand.`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelector('th')?.innerText === 'Cash This is the cash we currently have on hand.'); ``` Dovresti racchiudere il testo `This is the cash we currently have on hand.` in un elemento `span`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelector('th > span')?.textContent === 'This is the cash we currently have on hand.'); ``` L'elemento `span` dovrebbe avere l'attributo `class` con il valore `description`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelector('th > span')?.classList?.contains('description')); ``` Dovresti avere tre elementi `td`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelectorAll('td').length === 3); ``` Il primo elemento `td` dovrebbe avere il testo `$25`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelectorAll('td')?.[0]?.textContent === '$25'); ``` Il secondo elemento `td` dovrebbe avere il testo `$30`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelectorAll('td')?.[1]?.textContent === '$30'); ``` Il terzo elemento `td` dovrebbe avere il testo `$28`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelectorAll('td')?.[2]?.textContent === '$28'); ``` Il terzo elemento `td` dovrebbe avere l'attributo `class` con il valore `current`. ```js assert(document.querySelector('tbody')?.querySelectorAll('tr')?.[0]?.querySelectorAll('td')?.[2]?.classList?.contains('current')); ``` # --seed-- ## --seed-contents-- ```html Balance Sheet

AcmeWidgetCorp Balance Sheet

--fcc-editable-region-- --fcc-editable-region--
Assets
2019 2020 2021
``` ```css ```