G
G
gibsonen2017-06-19 20:27:35
JavaScript
gibsonen, 2017-06-19 20:27:35

Checking for anti-plagiarism of the thesis has decreased, what to do?

Hello, please tell me how to be. While writing my thesis (mobile program on android), I asked questions on stackoverflow, toaster and in various other programming forums. Now I checked for uniqueness, the program detects my program text as plagiarism and shows those forums where I asked the question. What to do? this is my information

Answer the question

In order to leave comments, you need to log in

6 answer(s)
A
Alexander Pashkevich, 2018-11-11
@Drovosek01

You have initialized the foo and bar variables.
Further, when you set a property on the object object, you take foo as the key. That is: Perhaps you wanted the property foo, that is, like this: But in your example, you use an object as a key, and the object only accepts strings as a key. Therefore, your object is converted to a string and after conversion it turns out like this: So your object will be like this:

var object = {
"[object Object]":"value"
};

And actually, when you do console.log, the bar object is also converted to a string and the string takes the form:
console.log(object["[object Object]"]);

A
Alexey Ukolov, 2018-11-11
@alexey-m-ukolov

Here's why:
From your own link:

Property names can be strings. This means that non-string objects can be used as keys in an object. Any non-string object, including numbers, is cast to a string via the toString method.
...
Also outputs "value" because foo and bar are converted to a string . In the SpiderMonkey JavaScript engine, this string will be "['object Object']".

A
Antony, 2017-06-19
@RiseOfDeath

No, this is a real borrowing from sources on the Internet.

M
Maxim Kudryavtsev, 2017-06-19
@kumaxim

Do a rewrite of plain text and refactoring of the program code. That's it, your problem is solved.

A
Anvar Shakhmaev, 2017-06-19
@RxR

change the names of variables, objects, classes. change the code a little, add comments and everything will be fine. In the case of regular text, paraphrase.

S
Saboteur, 2017-06-20
@saboteur_kiev

Point stackoverflow to one of the sources.
Please enter your stackoverflow account.
How does the teacher calculate anti-plagiarism? This program? Go to him and ask this question. A toaster won't help here.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question