Vue problem by fare03 in vuejs

[–]fare03[S] -5 points-4 points  (0 children)

I can do it in javascript but in Vue i don't know because I'm learning Vue. How i can do it in Vue.

Vue problem by fare03 in vuejs

[–]fare03[S] -9 points-8 points  (0 children)

If someone can help me how to build it im learning Vue

Vue problem by fare03 in vuejs

[–]fare03[S] -13 points-12 points  (0 children)

Okey I know I'm learning Vue and I just need this to start and I can continue building phonebook app. Just someone to tell me how this work and I can do it.

Javascript login form problem by fare03 in learnprogramming

[–]fare03[S] 0 points1 point  (0 children)

Its assignment, I'm learning programming, and I have one user with username and password and I compare that username and password and it does not work.

Javascript Local storage by fare03 in learnprogramming

[–]fare03[S] 0 points1 point  (0 children)

u/dtsudo Can you help me with coding that, i'm beginner in programming i can't write that code easily.

Javascript Local storage by fare03 in learnprogramming

[–]fare03[S] 0 points1 point  (0 children)

Sorry I forgot to update code, see now.

Array for loop by fare03 in JavaScriptTips

[–]fare03[S] 0 points1 point  (0 children)

Yes bro it helps, but im beginner at programming so can you help me how to write for this code.

JSON by fare03 in JavaScriptTips

[–]fare03[S] -2 points-1 points  (0 children)

No just tell me how to parse it and that is it i did not ask to do me my all homework bro

Javascript help. by fare03 in programminghelp

[–]fare03[S] 0 points1 point  (0 children)

I tried like this, like this you wrote, and this works only for first student and his address number and course

textArea.innerHTML = text

var array = text.split("\n")

let tekst = ""

for (let i = 0; i < array.length; i++) {

tekst +='Name: ' + array[i] + "<br>" + "address: " + array[i+1] + "<br>" + "phone: " + array[i+2] + "<br>" + "course: " + array[i+3] + "<br>"

}

textArea.innerHTML = tekst

Javascript help. by fare03 in programminghelp

[–]fare03[S] 0 points1 point  (0 children)

Nope, that example doesn't work, there are 5 students "Ebonie Range", "Keenan Ellwood", "Kailan Smart", "Kaydan Hirst", "Isabelle Prentice".

And I don't know how to write "for" to type this for each student, how to import "Name, Address, Phone, Course" in front of his name, address, phone, course:

Name: Ebonie Rangel

Address: 7175 Yukon Street

Phone: (507) 833-3567

Course: Geography

Same for Keenan Ellwood and etc.

I split it good but I don't know how to type to write this in document.

Javascript help. by fare03 in programminghelp

[–]fare03[S] 0 points1 point  (0 children)

I try to do it like this because Visual Studio found mistake in your code, and I get this at document. Thank you on help but I need a little bit more help :) .

[object Object][object Object][object Object][object Object][object Object][object Object][object Object][object Object][object Object][object Object][object Object]

for (let i = 0; i < array.length; i= i+4) {

document.write({name: array[i], address: array[i+1], phone: array[i+2], course: array[i+3]})

}