This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Frontend/React Interview Questions | |
| 1. What are sementic tags in Html?tell some html5 tags | |
| 2. Explain the this keyword with arrow function and normal function. | |
| -> // Arrow Function Normal Function | |
| // SOLUTION | |
| let user = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Implementation in ES6 | |
| function pagination(c, m) { | |
| var current = c, | |
| last = m, | |
| delta = 2, | |
| left = current - delta, | |
| right = current + delta + 1, | |
| range = [], | |
| rangeWithDots = [], | |
| l; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="control-group"> | |
| <label for="dob-day" class="control-label">Date of birth</label> | |
| <div class="controls"> | |
| <select name="dob-day" id="dob-day"> | |
| <option value="">Day</option> | |
| <option value="">---</option> | |
| <option value="01">01</option> | |
| <option value="02">02</option> | |
| <option value="03">03</option> | |
| <option value="04">04</option> |