function sample(str='string',index=0){ this.str=str; this.index=index; }
と
function sample(){ this.str='string'; this.index=0; }
は同じように動くと思うのですが
どちらで記述しても同じと考えていいでしょうか?
回答2件
あなたの回答
tips
プレビュー
投稿2021/04/18 00:44
function sample(str='string',index=0){ this.str=str; this.index=index; }
と
function sample(){ this.str='string'; this.index=0; }
は同じように動くと思うのですが
どちらで記述しても同じと考えていいでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/18 01:15 編集
2021/04/18 04:54