xxxxxxxxxx
Unlike Javascript where u can do function chaining like:
arr_obj.map(fun1).filter(fun2)
Python does not allow function chaining like above
That is the reason why in python map,filter,join,reversed etc
are not object methods but functions themselves