Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 288 Bytes

notes.md

File metadata and controls

10 lines (10 loc) · 288 Bytes
var a = document.querySelectorAll("[class*='hearts'],[class*='diamonds'],[class*='spades'],[class*='clubs']")
var b = document.querySelectorAll("[class*='details']")
console.log(b)
for(let i=0; i<a.length; i++){
  string+=a[i].outerHTML+','
}
string+= b.length
console.log(string)