A list of helpful front-end related questions you can use to interview potential candidates, test yourself or completely ignore.
After a few years of coding interviews, my friends and I noticed we always have a hard time finding good practice buddies. There was no place to get real practice & prep, so we built Pramp for developers like us.
Pramp is a free peer-2-peer practice platform for coding interviews.
We pair you to other programmers at your level and give you full interview questions & solutions. On each interview you and your peer interview each other on our site using video chat & collaborative code editor.
We're live for 2 months now and will be happy to hear your feedback and answer your questions.
//json is
vm.o={
"products":{
"productsSubCategories":{
"subCategoryName":""
}
}
}
//and the array is like this
vm.a = ["ba","js"]
//i need like this
vm.o={
"products":{
"productsSubCategories":{
"subCategoryName":"ba"||"js"
}
}
}
//this what i tried
var r= vm.category.map(function(p){ return '"' + p + '"'; }).join(',');
vm.o.products.productsSubCategories.subCategoryName = r;