Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to initialize an array in Kotlin with values?
Home
Kotlin
How to initialize an array in Kotlin with values?
0
votes
asked
Oct 6, 2021
in
Kotlin
by
Robin
How to initialize an array in Kotlin with values?
arrary-intialize
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 6, 2021
by
Robin
val numbers: IntArray = intArrayOf(10, 20, 30, 40, 50)
...