js プラグインで次のコーンを見つけました
var container = document.getElementById( 'vs-container' ),
wrapper = container.querySelector( 'div.vs-wrapper' ),
sections = Array.prototype.slice.call( wrapper.querySelectorAll( 'section' ) ),
links = Array.prototype.slice.call( container.querySelectorAll( 'header.vs-header > ul.vs-nav > li' ) );
上記のコードでArray.prototype.slice.call()
&が何をするのか理解できませんでした。wrapper.querySelectorAll( 'section' )
見たことがないので、実際に何をしているのか知りたいです。