most goals scored in bundesliga season
This is a dialog window
56.5K Shares
twitter facebook tumblr reddit quora medium
most goals scored in bundesliga season

Most Goals Scored In Bundesliga Season Portable

For years, the record seemed untouchable. However, the 2020/21 season brought the record closer to being broken than ever before. Bayern Munich’s Robert Lewandowski scored an incredible 41 goals in just 29 appearances, shattering Müller's record. Correction: It is important to note that Lewandowski broke the record for foreign players , but the overall single-season record is often debated depending on the source, with Müller's 40 standing as the benchmark for decades. Self-correction for clarity: Actually, Robert Lewandowski did break Gerd Müller's record in the 2020/21 season by scoring 41 goals .

Being the designated spot-kick taker provides a necessary cushion. most goals scored in bundesliga season

const BundesligaGoalsLeaderboard = () => const [data, setData] = useState([]); const [filter, setFilter] = useState(0); For years, the record seemed untouchable

Harry Kane’s current trajectory in the Bundesliga suggests that even Lewandowski’s new benchmark of 41 may not be safe for long, but for now, the Polish striker sits atop the history books. Correction: It is important to note that Lewandowski

💡 Lewandowski averaged 1.41 goals per game during his record-breaking season, a higher scoring rate than Müller’s 1.18 in 1972. Top 5 Single-Season Scorers

return ( <div> <h1>🏆 Most Goals in a Bundesliga Season</h1> <label>Minimum goals: <input type="number" value=filter onChange=e => setFilter(e.target.value) /> </label> <Bar data=chartData /> <table border="1" cellPadding="8"> <thead><tr><th>Rank</th><th>Player</th><th>Season</th><th>Club</th><th>Goals</th><th>Games</th><th>Ratio</th></tr></thead> <tbody> data.map((item, idx) => ( <tr key=idx> <td>idx + 1</td> <td>item.player</td> <td>item.season</td> <td>item.club</td> <td>item.goals</td> <td>item.games</td> <td>(item.goals / item.games).toFixed(2)</td> </tr> )) </tbody> </table> </div> ); ;