javascript number in alphabet

// converts numbers to spreadsheet letter columns eg. 1 -> A
function numToSSColumn(num){
  let s = '', t;

  while (num > 0) {
    t = (num - 1) % 26;
    s = String.fromCharCode(65 + t) + s;
    num = (num - t)/26 | 0;
  }
  return s || undefined;
}

numToSSColumn(0); // undefined
numToSSColumn(1); // A
numToSSColumn(26); // Z
numToSSColumn(-1); // undefined
numToSSColumn(27); // AA
numToSSColumn(475254); // ZZZZ

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
js alphabet letters js get alphabet alphabet sequence in javascript number of alphabete show in javascript how to identify input value alphabets or number javascript alphabet number for J alphabet as numbers js get number to alphabet js get alphabet from number javascript how to print numberin alphabet using javascript how to print alphabet in number using javascript how to get alphabet character code in javascript get number to alphabet javascript javascript get alphabet javascript get letter of alphabet by number number of j in alphabet all alphabets in string javascript is alphabet in javascript position alphabet number js convert number to alphabet string javascript get number of alphabet in javscript js char letter number in alphabet is alphabet function in js working with the alphabet javascript js alphabet find which number in the alphabet javascript find alphabet by number js javascript count alphabets and numbers in a string how to get alphabets using numbers in javascript numeric value for alphabets js javascript count alphabet javascript alphabet char in for javascript alphabet char how to make all alphabets are in sequence using js get alphabet letter from number javascript get alphabet javascript j is what number in the alphabet detect number and alphabet js javascript number of a alphabet javascript numeric of a alphabet java script numeric of a alphabet alphabet and number are allow in javascript all alphabets inn javascript javascript to find the number of alphabet in inout javascript to find the number of no alphabet in inout javascipt check letters alphabetical number function in javascript convert alphabet to number js alphabet from number alphabet character javascript method that returns number of alphabet javascript how to get alphabet in javascript how to get the alphabet in javascript w alphabet charvalue javascript count alphabet js javascript letter number in alphabet return alphabet value in javascript js count alphabet how to put alphabet with number sequence in javascript number to alphabet javascript alphabet letter to number javascript js get letter number in alphabet char value of alphabet in js javascript number as key and alphabet as value as english alphabet work out value of alphabet in javascript how to print alphabet in javascript The Number Alphabet alphabetize function javascript number to alphabet in js js number to leeter javascript number to alphabet how to check a number is alphabet in javascript javascript check alphabet js number to alphabet convert number to alphabet javascript convert number to alphabet javascript alphabet charcode function that converts numbers to letters javascript javascript convert number to letter of alphabet check alphabet in javascript javascript number in alphabet
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source