Skip to main content
1 of 4
ASCII-only
  • 5.2k
  • 22
  • 43

Javascript (ES5), 46 44 40 bytes

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

47 bytes if no whitespace is allowed:

_=>$('.subheader>h2').text().split` `[0].trim() 
ASCII-only
  • 5.2k
  • 22
  • 43