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

Employees

{#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' })}. The number of employees {changeRate >=0 ? 'increased' : 'decreased'} by {abbreviateNumber(changeRate)} or {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}
{abbreviateNumber(employees)}
{#if dateDistance} n/a {:else} {abbreviateNumber(changeRate)} {/if}
{#if growthRate >= 0} +{growthRate}% {:else if growthRate < 0}
{growthRate}%
{:else} n/a {/if}

Employees History

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)} {abbreviateNumber(item?.employeeCount-historyList[index+1]?.employeeCount)} {#if index+1-historyList?.length === 0} 0.00% {: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} 0.00% {/if} {/if}
{:else}

No history found

{/if}