Skip to content

Instantly share code, notes, and snippets.

@meirlamdan
meirlamdan / gist:9e399dc48c6e7e72ca7905ee852bf496
Last active February 11, 2024 17:34
Convert number to Hebrew letters js
//https://stackoverflow.com/a/30676253/12782960 in c#
function formatHebrew(num) {
if(num <= 0) return
let ret = 'ת'.repeat(Math.floor(num / 400));
num %= 400;
if(num >= 100) {
ret += "קרש"[Math.floor(num / 100) - 1];