Bay Area Golden Dragon

Team Members

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Daniel Huang

5

2.00

3.80

0.40

0.20

0.00

0.4

17.5%

11.5%

5.9%

22.2%

33.3%

Eric

9

6.11

8.78

1.11

1.56

0.33

0.0

35.0%

32.3%

32.3%

#DIV/0!

41.9%

Jerry

2

3.00

3.00

0.00

1.00

1.00

0.0

43.6%

33.3%

50.0%

0.0%

100.0%

Jing Hu

12

3.58

2.75

2.75

0.67

0.00

0.5

36.8%

29.6%

31.3%

27.3%

50.0%

John Ho

1

5.00

3.00

0.00

0.00

0.00

0.0

37.0%

40.0%

66.7%

0.0%

25.0%

Penny

12

7.42

3.50

0.42

0.83

0.00

1.7

43.0%

31.3%

23.9%

37.7%

70.0%

Peter

6

3.50

3.83

0.67

0.83

0.00

0.3

35.7%

28.0%

33.3%

20.0%

50.0%

Philip

5

6.20

2.60

0.80

0.40

0.00

0.8

36.8%

30.8%

42.1%

20.0%

42.9%

Powei Chen

12

4.25

3.50

0.25

0.42

0.08

0.1

50.2%

47.4%

51.5%

20.0%

48.3%

Stanley

1

2.00

9.00

1.00

2.00

0.00

0.0

33.3%

33.3%

33.3%

#DIV/0!

#DIV/0!

Steven

1

0.00

4.00

1.00

2.00

0.00

0.0

0.0%

0.0%

0.0%

0.0%

#DIV/0!

嘉豪

7

2.14

1.86

0.29

0.14

0.00

0.3

27.9%

23.1%

33.3%

14.3%

50.0%

洪若軒

1

2.00

0.00

0.00

1.00

0.00

0.0

16.7%

16.7%

33.3%

0.0%

#DIV/0!

Subscribe to our newsletter to be in touch with latest news.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 搜尋功能 document.getElementById('searchInput').addEventListener('input', function () { const filter = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const name = item.querySelector('.Name').innerText.toLowerCase(); if (name.includes(filter)) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); }); // 篩選功能 document.getElementById('teamFilter').addEventListener('change', function () { const selectedTeam = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const team = item.querySelector('Team').innerText.toLowerCase(); if (selectedTeam === 'all' || team === selectedTeam) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); });