Marko Milić (footballer)

Marko Milić (Serbian Cyrillic: Марко Mилић; born November 6, 1987 in Belgrade) is a Serbian football player, who plays for FC Istiklol in the Tajikistan Higher League.[1]

Marko Milić
Personal information
Full name Marko Milić
Date of birth (1987-11-06) November 6, 1987
Place of birth Belgrade, SFR Yugoslavia
Height 1.90 m (6 ft 3 in)
Playing position(s) Centre-back
Club information
Current team
Istiklol
Number 2
Senior career*
Years Team Apps (Gls)
2005–2010 Bežanija 63 (2)
2006–2007Budućnost Dobanovci (loan) 25 (2)
2011–2012 OFK Beograd 3 (0)
2012 Borac Banja Luka 0 (0)
2012 Bežanija 13 (0)
2013 Novi Pazar 7 (0)
2013 Čelik Nikšić
2014 Timok 7 (0)
2014 Bežanija 10 (0)
2015 Zemun 6 (1)
2015–2018 Bežanija 49 (1)
2018–2019 Kokand 1912 52 (0)
2020– Istiklol 9 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 14:22, 8 August 2020

Career statistics

Club

As of match played 8 August 2020[1]
Club Season League National Cup Continental Other Total
DivisionAppsGoalsAppsGoalsAppsGoalsAppsGoalsAppsGoals
Bežanija 2014–15 PrvaLiga 10010-110
2015–16 11020-130
2016–17 14100-141
2017–18 14010-150
Total 49140----530
Kokand 1912 2018 Uzbekistan Super League 29030-320
2019 23000-230
Total 52030----550
Istiklol 2020[2] Tajik League 90003010130
Career total 11017030101210

Honors

Istiklol
gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.