我需要獲取字符串的前半部分。

基本上是在特定字符“-”之前的所有內容。

以下是我所做的:

const str = 'test-hey-ho'
str.split('-')[0] //'test'