- $()
- $('')
- $("")
- $(``)
- $('.a')
- obj = $('.a')
- obj
- obj[0]
- `${obj[0]}`
- $(obj[0])
- let obj = $('.a')
- typeof obj 👉 object(typeof)
- obj 👉 Object(Prototype)
- obj[0] 👉 Element(JS)
- `${ obj[0] }` 👉 string
-
- $( obj[0] ) 👉 Element(JQ)
|
- []
- ['']
- [""]
- [``]
- [`a`]
- arr = [`a`]
- arr
- arr[0]
- `${arr[0]}`
- $(`${arr[0]}`)
- let arr = [`a`]
- typeof arr 👉 object(typeof)
- arr 👉 Array(0)(Prototype)
- arr[0] 👉 string
- `${ arr[0] }` 👉 string
- $( `${ arr[0] }` ) 👉 Element(JQ)
-
|