mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): change easy quiz questions (#65509)
This commit is contained in:
+3
-3
@@ -66,19 +66,19 @@ How can you use JavaScript to find all HTML anchors with missing hyperlinks?
|
||||
#### --distractors--
|
||||
|
||||
```js
|
||||
document.findAll("link![href]");
|
||||
document.querySelectorAll("link![href]");
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
```js
|
||||
document.find("link:not([href])");
|
||||
document.querySelectorAll("link:not([href])");
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
```js
|
||||
document.querySelector("a![href]");
|
||||
document.querySelectorAll("a![href]");
|
||||
```
|
||||
|
||||
#### --answer--
|
||||
|
||||
Reference in New Issue
Block a user