03BCBinayak ChoudharyRegex for javascriptI want a regex that will match anytype of below-mentioned texts: [test] test test test Should not match: 123 <spaces> test %^&& hi&** ^gello So far I have tried this: ^[a-zA-Z][a-zA-Z\s]*$Jul 10, 2019MSM
01BCBinayak ChoudharyHow can I go to the previous page using router.navigation?I have written this: window.history.back(); Is there any alternative to it? In router navigation. (angular 2+)Jan 25, 2019H
01BCBinayak ChoudharyI want the first accordion open by default, how can I achieve that?<accordion *ngIf="isResponsive"> <ul> <li style="list-style-type: none" *ngFor="let tab of tabs; let index = index"> <a class="nav-link" [ngClass]="{'active':index==0}" href="javascript:void(0)" data-toggle="modal" ...Jan 19, 2019S
01BCBinayak ChoudharyWhat is the best way to set up a Node.js project?How can I set up a Node.js project? Mainly I am concerned about the directory structure. Kindly explain the usages of Webpack, CD/CI and Redis.Jan 8, 2019M