Column Header | Column Value |
---|---|
Name | Md Asif Iqbal |
Roll Number | 16CH10022 |
[email protected] | |
1. Frontend Challenge 1: HTML file link | https://maxasif.github.io/Frontend-page-of-LinkedIn/ |
2. Javascript task1: Repository link | https://github.com/MaxAsif/Validate-input |
3. Javascript task2: Repository link | https://github.com/MaxAsif/Input-max-words |
This file contains 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
/* Utilities */ | |
var RANDOM = function() {}; | |
function _randomInt(min, max) { | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
function _randomHex(len) { | |
var hex = '0123456789abcdef'; |