Sumali sa IDNStudy.com at tuklasin ang komunidad ng mga taong handang tumulong. Makakuha ng mga kumpletong sagot sa lahat ng iyong mga tanong mula sa aming network ng mga eksperto.
Sagot :
// ==UserScript==
// @name Brainly v2.0
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://brainly.com/*
// @grant none
// ==/UserScript==
function removePost(e) {
e.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.removeChild(e.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode);
}
function checkRating(rating) {
let value = parseInt(rating.innerText);
return value >= 4;
}
function filterRatings() {
if (document.querySelectorAll("div[class='sg-rate-box__rate']").length === 0) {
console.log('No answers to check.');
}
else {
var Listings = [...document.querySelectorAll("div[class='sg-rate-box__rate']")].map(listing => {
if (parseInt(listing.innerText) < 4 && parseInt(listing.innerText) != 0) {
removePost(listing);
console.log(`${listing} being removed`);
}
else {
return parseInt(listing.innerText);
}
});
console.log(Listings);
}
}
(function() {
'use strict';
filterRatings();
})();
.Answer:
8.B. goggles
9.A.claw hammer
10.B.umbrella nails
12.C. auger bit
Explanation:
Thanks hope it helps
8.B. goggles
9.A.claw hammer
10.B.umbrella nails
12.C. auger bit
Explanation:
Thanks hope it helps
Ang iyong aktibong pakikilahok ay mahalaga sa amin. Magpatuloy sa pagtatanong at pagbibigay ng mga sagot. Sama-sama tayong lumikha ng isang masiglang komunidad ng pagkatuto. Salamat sa pagbisita sa IDNStudy.com. Nandito kami upang magbigay ng malinaw at tumpak na mga sagot.