Created
September 1, 2022 11:51
-
-
Save triacontane/e6e87e7364069d9243e38099a7df6182 to your computer and use it in GitHub Desktop.
ブラケット表記法サンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const test = ( tes )=>{ | |
let i = [1,2,3]; | |
let g = i[tes]; | |
console.log( g ); | |
} | |
test( 'length' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment