Skip to main content
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
Source Link

Javascript (ES5), 46 44 40 38 33 bytes

_=>parseInt($('#answers').text()) 

5 bytes saved thanks to Ismael MiguelIsmael Miguel

Note: This is pretty slow, and won't work if you have the PPCG-Design userscript.

Javascript (ES5), 46 44 40 38 33 bytes

_=>parseInt($('#answers').text()) 

5 bytes saved thanks to Ismael Miguel

Note: This is pretty slow, and won't work if you have the PPCG-Design userscript.

Javascript (ES5), 46 44 40 38 33 bytes

_=>parseInt($('#answers').text()) 

5 bytes saved thanks to Ismael Miguel

Note: This is pretty slow, and won't work if you have the PPCG-Design userscript.

added 109 characters in body
Source Link
ASCII-only
  • 5.2k
  • 22
  • 43

Javascript (ES5), 46 44 40 3838 33 bytes

_=>parseInt($('.subheader>h2''#answers').text()) 

5 bytes saved thanks to Ismael Miguel

Note: This is pretty slow, and won't work if you have the PPCG-Design userscript.

Javascript (ES5), 46 44 40 38 bytes

_=>parseInt($('.subheader>h2').text()) 

Javascript (ES5), 46 44 40 38 33 bytes

_=>parseInt($('#answers').text()) 

5 bytes saved thanks to Ismael Miguel

Note: This is pretty slow, and won't work if you have the PPCG-Design userscript.

deleted 92 characters in body
Source Link
ASCII-only
  • 5.2k
  • 22
  • 43

Javascript (ES5), 46 44 4040 38 bytes

_=>$('.subheader>h2').text_=>parseInt().split` `[0] 

47 bytes if no whitespace is allowed:

_=>$$('.subheader>h2').text().split` `[0].trim() 

Javascript (ES5), 46 44 40 bytes

_=>$('.subheader>h2').text().split` `[0] 

47 bytes if no whitespace is allowed:

_=>$('.subheader>h2').text().split` `[0].trim() 

Javascript (ES5), 46 44 40 38 bytes

_=>parseInt($('.subheader>h2').text()) 
Source Link
ASCII-only
  • 5.2k
  • 22
  • 43
Loading