Skip to content
View Shaikot007's full-sized avatar

Block or report Shaikot007

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Dokan Public

    An e-commerce website made with React.js, Redux, React-redux, HTML, CSS, JavaScript, Restful API, Axios, Media queries, Node.js, Express.js, Mongoose, MongoDB.

    JavaScript

  2. Roman numeral converter. (freeCodeCa...
    1
    function convertToRoman(num) {
    2
      var englishArray = [1000000, 500000, 100000, 50000, 10000, 5000, 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1]; 
    3
      
    4
      var romanArray = ["M̄", "D̄", "C̄", "L̄", "X̄", "V̄", "M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"]; 
    5
      
  3. Palindrome checker. (freeCodeCamp Ja...
    1
    function palindrome(str) {
    2
      var newstr = str.replace(/[\W\_]/gi, "").toLowerCase();
    3
      
    4
      array = newstr.split("").reverse().join("");
    5
      
  4. Telephone number validator. (freeCod...
    1
    function telephoneCheck(str) {
    2
      var regex1 = /^[0-9]{3}[-][0-9]{3}[-][0-9]{4}$/;
    3
      var regex2 = /^[(][0-9]{3}[)][0-9]{3}[-][0-9]{4}$/;
    4
      var regex3 = /^[(][0-9]{3}[)][\s][0-9]{3}[-][0-9]{4}$/;
    5
      var regex4 = /^[0-9]{3}[\s][0-9]{3}[\s][0-9]{4}$/;
  5. Caesars cipher. (freeCodeCamp JavaSc...
    1
    function rot13(str) {
    2
      newstr = str.split("");
    3
      
    4
      var finalstr = newstr.map(function(letter) {
    5
        lettervalue = letter.charCodeAt(0);
  6. Cash register. (freeCodeCamp JavaScr...
    1
    function checkCashRegister(price, cash, cid) {
    2
      var change = cash - price;
    3
      
    4
      var coinValues = [
    5
        { name: 'ONE HUNDRED', val: 100.00 },