Skip to content

Instantly share code, notes, and snippets.

View Roshankrsoni's full-sized avatar
:atom:
Learning

Roshan Kr Soni Roshankrsoni

:atom:
Learning
View GitHub Profile
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 = {
@Roshankrsoni
Roshankrsoni / simple-pagination.js
Created September 14, 2020 16:18 — forked from kottenator/simple-pagination.js
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;
@Roshankrsoni
Roshankrsoni / date-of-birth.html
Created December 9, 2016 12:17 — forked from timpaul/date-of-birth.html
HTML markup for a date-of-birth picker
<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>