CANJS のドキュメントを調べて、can.List() に並べ替え関数を実装しようとしました。
var list = new can.List([
{ name: 'Justin' },
{ name: 'Brian' },
{ name: 'Austin' },
{ name: 'Mihael' }])
list.comparator = 'name';
list.sort(); //- sorts the list by the name attribute
これをコンソール(ブラウザ)で実行しようとしたとき。「Uncaught TypeError: undefined is not a function」と言っています。なんで?ここで何か不足していますか?