Can you get an annotation of a ```KProperty``` In ...
# getting-started
j
Can you get an annotation of a
Copy code
KProperty
In Kotlin/JS?
g
Nope. You can get annotations of only inheritors of KAnnotatedElement interface that is available only on JVM and Native platforms. Hence, on JS there is no way to get annotations of your element. P.S. Moreover, the interface does not have any method or property on Native platform. So annotations are really available only on JVM.