en.javascript.info/2-ui/1-document/09-size-and-scroll/1-get-scroll-height-bottom/task.md
Peter Roche aa97ba0e9b
Update task.md
'from bottom scroll' -> 'to bottom scroll'
2019-11-08 16:52:14 -07:00

11 lines
381 B
Markdown

importance: 5
---
# What's the scroll from the bottom?
The `elem.scrollTop` property is the size of the scrolled out part from the top. How to get the size of the bottom scroll (let's call it `scrollBottom`)?
Write the code that works for an arbitrary `elem`.
P.S. Please check your code: if there's no scroll or the element is fully scrolled down, then it should return `0`.