[m[1]]: an array containing the single element m[1], just like you could have [1], or [1, 2, 'bla']
jQuery.extend({
noConflict: function() {
return 123;
},
jQuery is an object, which extend method is invoked with an object parameter having the given function as property "noConflict".
Hope this helps,
Marc.