js 썸네일형 리스트형 Install ReactJS Requirement :- nodejs- npm- yarn * install nvm(see link)install NVM * install yarn (centos)]$ sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo]$ sudo yum install yarn * install Create React APP]$ npm install -g create-react-app * create project (Transforming tool. using WebPack more details)https://github.com/facebook/create-react-app ]$ create-react-app [app-name]]$ .. 더보기 install NVM 기본적으로 아래 github 에서 확인 가능https://github.com/creationix/nvm install script ]$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash OR]$ wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash ]$ source ~/.bashrc install nodejs]$ nvm ls-remote ]$ nvm install [version]]$ nvm use [version] 더보기 [jQuery] remove array item remove_array : function(arr, item){ arr = $.grep(arr, function(value){ return value.item != item; }); return arr; }위 함수를 이용해주면 arr내에서 item값을 갖는 배열 원소를 삭제해줌.다중배열일때는 return~ 뒤에 조건절 변경. 더보기 이전 1 2 다음