{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} {$displayCompanyName} ({$stockTicker}) Number of Employees · stocknear

{$stockTicker} Employees

{#if employeeHistory?.length !== 0 && !dateDistance} {$displayCompanyName} had {new Intl.NumberFormat("en")?.format( employees, )} employees on {new Date( employeeHistory[employeeHistory?.length - 1]["filingDate"], )?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })}. The number of employees {changeRate >= 0 ? "increased" : "decreased"} by {new Intl.NumberFormat("en")?.format(changeRate)} or = 0 ? "text-[#00FC50]" : "text-[#FF2F1F]"} > {growthRate}% compared to the previous year. {:else if employeeHistory?.length !== 0 && dateDistance} {$displayCompanyName} had {abbreviateNumber(employees)} employees on {new Date( employeeHistory[employeeHistory?.length - 1]["filingDate"], )?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })}. Since then, the company has not submitted any additional employee data for more than a year. {:else} No employee history for {$displayCompanyName}. Probably, no records of past employees. {/if}
Employees
{#if Number(employees)} {new Intl.NumberFormat("en")?.format(employees)} {:else} n/a {/if}
Change (1Y)
{#if dateDistance} n/a {:else} {new Intl.NumberFormat("en")?.format(changeRate)} {/if}
Growth (1Y)
{growthRate}%
Revenue / Employee
{#if Number(data?.getStockDeck?.revenuePerEmployee)} ${new Intl.NumberFormat("en")?.format( data?.getStockDeck?.revenuePerEmployee, )} {:else} n/a {/if}
Profits / Employee
{#if Number(data?.getStockDeck?.profitPerEmployee)} ${new Intl.NumberFormat("en")?.format( data?.getStockDeck?.profitPerEmployee, )} {:else} n/a {/if}
Market Cap
{abbreviateNumber(data?.getStockQuote?.marketCap)}

Employees Chart

Select Type (sortBy = "Total")} class="cursor-pointer hover:bg-[#27272A]" > Total (sortBy = "Change")} class="cursor-pointer hover:bg-[#27272A]" > Change (sortBy = "Growth")} class="cursor-pointer hover:bg-[#27272A]" > Growth
{#if historyList?.length !== 0} {#if sortBy === "Total"}
{:else if sortBy === "Change"}
{:else if sortBy === "Growth"}
{/if}
{#each historyList as item, index} {/each}
Date Employees Change Growth
{new Date(item?.filingDate)?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })} {new Intl.NumberFormat("en").format(item?.employeeCount)} {#if Number(item?.employeeCount - historyList[index + 1]?.employeeCount)} {new Intl.NumberFormat("en")?.format( item?.employeeCount - historyList[index + 1]?.employeeCount, )} {:else} - {/if} {#if index + 1 - historyList?.length === 0} - {:else if item?.employeeCount - historyList[index + 1]?.employeeCount > 0} +{( ((item?.employeeCount - historyList[index + 1]?.employeeCount) / item?.employeeCount) * 100 )?.toFixed(2)}% {:else if item?.employeeCount - historyList[index + 1]?.employeeCount < 0} -{( ((historyList[index + 1]?.employeeCount - item?.employeeCount) / item?.employeeCount) * 100 )?.toFixed(2)}% {:else} - {/if}
{:else}

No history found

{/if}