[LeetCode] 2703. Return Length of Arguments Passed

Chobby·2024년 6월 27일
1

LeetCode

목록 보기
14/194

😎풀이

그저 인자의 수만 반환하면 끝나는 문제이다.

type JSONValue = null | boolean | number | string | JSONValue[] | { [key: string]: JSONValue };

function argumentsLength(...args: JSONValue[]): number {
    return args.length
};
profile
내 지식을 공유할 수 있는 대담함

0개의 댓글