Skip to content
View skcorroh's full-sized avatar
  • CHG Healthcare
  • Utah

Block or report skcorroh

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. During a code challenge I was tasked... During a code challenge I was tasked creating a function (details after) and tried to do it recursively, I had to change gears but to prove to myself that I could do it, here it is. ~Challenge: "Write a function numericReduction(number) that takes a number and adds the digits together until only 1 digit remains and return the number of itterations it took"~
    1
    function numericReduction(num, count=1) {
    2
    	if(isNaN(num)) throw new Error('num must be a valid integer')
    3
      
    4
    	var new_num = (num+'').split('').reduce((total, value)=>total+=parseInt(value),0)
    5
      
  2. ryanhorrocks.com-react ryanhorrocks.com-react Public

    Potential employers wanted to know my experience with React, since I didn't have any I decided to re-build my website from scratch using create-react-app as my starting point.

    JavaScript